昨天看视频 问题不是这个函数 而是return 是不是当需要返回值的时候写 ,不需要的时候不用写?
- public static ArrayList singleElement(ArrayList al)
- {
- //定义一个临时容器。
- ArrayList newAl = new ArrayList();
-
- Iterator it = al.iterator();
-
- while(it.hasNext())
- {
- Object obj = it.next();
- if(!newAl.contains(obj))
- newAl.add(obj);
-
- }
- return newAl;
- }
复制代码
|