1、创建ArrayList对象; 2、使用add方法,添加”a“、”b“、”c“、”d“、”e“,5个元素 3、使用remove方法,移除第3个元素”c“ 4、使用set方法,将第2个元素改为“F” 5、使用get方法,读取出数组中的第2个元素; 6、遍历输出ArrayList集合中的每个元素
时间: 2023-12-03 18:42:28 浏览: 74
C#中数组Array,ArrayList,泛型List详细对比
下面是示例代码:
```java
import java.util.ArrayList;
public class ArrayListDemo {
public static void main(String[] args) {
// 创建ArrayList对象
ArrayList<String> list = new ArrayList<>();
// 添加元素
list.add("a");
list.add("b");
list.add("c");
list.add("d");
list.add("e");
// 移除第3个元素
list.remove(2);
// 将第2个元素改为"F"
list.set(1, "F");
// 读取出数组中的第2个元素
String second = list.get(1);
System.out.println("The second element is: " + second);
// 遍历输出ArrayList集合中的每个元素
System.out.println("The elements in the ArrayList are:");
for (String s : list) {
System.out.println(s);
}
}
}
```
输出结果:
```
The second element is: F
The elements in the ArrayList are:
a
F
d
e
```
阅读全文