Java: Replace the second element of a ArrayList with the specified element
Java Collection, ArrayList Exercises: Exercise-21 with Solution
Write a Java program to replace the second element of an ArrayList with the specified element.
Pictorial Presentation:
Sample Solution:-
Java Code:
import java.util.ArrayList;
public class Exercise21 {
public static void main(String[] args){
ArrayList<String> color = new ArrayList<String>();
color.add("Red");
color.add("Green");
System.out.println("Original array list: " + color);
String new_color = "White";
color.set(1,new_color);
int num=color.size();
System.out.println("Replace second element with 'White'.");
for(int i=0;i<num;i++)
System.out.println(color.get(i));
}
}
Sample Output:
Original array list: [Red, Green] Replace second element with 'White'. Red White
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Increase the size of an array list.
Next: Print all the elements of a ArrayList using the position of the elements.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/collection/java-collection-exercise-21.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics