因此,如果我有两套:
Set<Integer> test1 = new HashSet<Integer>();
test1.add(1);
test1.add(2);
test1.add(3);
Set<Integer> test2 = new HashSet<Integer>();
test2.add(1);
test2.add(2);
test2.add(3);
test2.add(4);
test2.add(5);
有没有一种方法可以比较它们,并且只返回一组4和5?
可能的重复stackoverflow.com/questions/8064570/...
—
萨钦·塔帕
这不是精确的重复:对称差异和差异不相同。
—
西蒙·尼克森
—
Colin D
如果test1的含有6,我想答案还是4,5
—
大卫Tunnell