-1

如何与我的项目中的 ArrayList 对象进行比较我想像这样检查

ArrayList al=new ArrayList();
al.add(".net");
al.add("java");
 ArrayList list=new ArrayList();
   list.add(".net");
    list.add("java");
      list.add("iphone")

现在我想比较 al 和 list 并且我想要输出是 iphone 请帮帮我

4

3 回答 3

1

你需要使用removeAll()方法

list.removeAll(a1);
于 2012-11-02T19:56:38.063 回答
1

aCollection.removeAll(otherCollection) 将从包含在 otherCollection 中的 aCollection 中删除所有元素。

于 2012-11-02T19:58:21.103 回答
0
for (int i = 0; i <al.size(); i++) {
for (int j = 0; j < list.size(); j++) {
  if((list.get(i).equals(list.get(j)) )
} 
}
于 2012-11-02T19:56:59.963 回答