- import java.util.*;
- class Demo
- {
- public static void main(String[] args)
- {
- public static void main(String[] args) {
- int[] arr={4,2,4,6,1,2,4,7,8};
-
- ArrayList<Integer> list=new ArrayList<Integer>();
- //创建ArrayList对象。
- for (int x :arr){
- //增强For循环遍历数组。
- if (!list.contains(x)){
- //判断是否有相同数字。
- list.add(x);
- //将遍历的元素依次添加到list中。
- }
- }
- System.out.println(list);
- }
- }
复制代码
|
|