如何添加兩組元素?從兩組添加元素
If there's a set one (1, 3, 6, 8)
And a set two (2, 4, 6, 8)
我如何將這兩個元素結合在一起?
Output should be (1, 2, 3, 4, 6, 8)
這裏是我的嘗試:
Set<Integer> one = new HashSet();
one.add(1);
one.add(3);
// and so on
Set<Integer> two = new HashSet();
two.add(2);
two.add(4);
// and so on
Set<Integer> newSet = new HashSet();
newSet.add(one);
newSet.add(two);
return newSet;
這是不行的,因爲add方法僅適用於一個整數,整數不是一個集合。有沒有一種方法可以將兩組相加?
我也必須返回設置。我怎麼做?
嘗試使用addAll而不是添加 –