这是我的代码的一部分:
ArrayList<String> Alist= new ArrayList<String>();
ArrayList<String> Blist= new ArrayList<String>();
Alist.add("gsm");
Alist.add("tablet");
Alist.add("pc");
Alist.add("mouse");
Blist.add("gsm");
Blist.add("something");
Blist.add("pc");
Blist.add("something");
所以我有两个数组列表,我想比较所有项目并检查它们是否不相等,以及它们是否只打印不相等的项目。
所以我做了这样的事情:
http://postimage.org/image/adxix2i13/ 对图片感到抱歉,但是当我在此处发布 for 循环时出现某种错误。
结果是:
not equals..:tablet
not equals..:pc
not equals..:mouse
not equals..:gsm
not equals..:tablet
not equals..:pc
not equals..:mouse
not equals..:gsm
not equals..:tablet
not equals..:pc
not equals..:mouse
not equals..:gsm
not equals..:tablet
我只想打印示例中不相等的 2 个,它们是 gsm 和 pc
not equals..:gsm
not equals..:pc