java 删除整数元素集合中的元素

1. 简介

对于整数类型的元素集合,例如{1, 2, 3, 4, 5},进行元素删除时需要注意。在List中删除操作有remove(int index)和remove(Object o),

查看两种方式的注意事项。

2. 示例

(1)删除指定索引的元素;

(2)删除指定的元素;

         Integer[] array2 = new Integer[]{1,2,3,4};
List<Integer> list2 = new ArrayList<>(Arrays.asList(array2));
list2.remove(1); // (1)
System.out.println(list2); // [1, 3, 4]
list2.remove(Integer.valueOf(1)); // (2)
System.out.println(list2); // [3, 4]

!!!

上一篇:Linux开机挂载windows共享文件夹


下一篇:Linux程序在Windows下编译运行_MinGW和Cygwin