- public static void main(String[] args) {
- ArrayList<Integer> list = new ArrayList<Integer>();
- list.add(6);
- list.add(444);
- list.add(5);
- list.add(22);
- int index = list.indexOf(5);
- if (index < 0) {
- System.out.println("元素不存在!");
- }
- else {
- list.remove(index);
- }
- System.out.println(list);
- }
复制代码 |