two.add("good");

Collection exists=new ArrayList(two);

Collection notexists=new ArrayList(two);

exists.removeAll(one);

System.out.println("two中不存在于_set中的:"+exists);

notexists.removeAll(exists);

System.out.println("two中存在于_set中的:"+notexists);

当然结果就是:

two中不存在于_set中的:[good]
two中存在于_set中的:[jim, tom, jack]