集合中contains的用法

  • Post author:
  • Post category:其他


  1. /*去掉重复对象方法*/
  2. public static ArrayList singleElements(ArrayList al2){


  3. //定义一个临时容器。

  4. ArrayList newAl = new ArrayList();
  5. Iterator it = al2.iterator();


  6. while(it.hasNext()){
  7. Object obj = it.next();



  8. //判断contains是否包含这个对象

  9. if(!newAl.contains(obj)){


  10. newAl.add(obj);

  11. }

  12. }return newAl;

  13. }





关于contains的一些知识:


(1)contains返回的是bool值,当其中包含某个指定的值或者对象的时候  返回true;


(2)…..




版权声明:本文为Amethyst128原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。