import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
public class NumDemo {
public static void main(String[] args) {
int[] ary1 = { 1,2,8,6,8,7 };
int[] ary2 = { 1,-2,7,5,};
HashSetset = new HashSet ();//用于存储数组1和数组2
for (int a : ary1) {
set.add(a);
}
for (int b : ary2) {
set.add(b);
}
for (int i = 0; i < ary1.length; i++) {
int temp = ary1[i];
boolean flag = false;
for (int j = 0; j < ary2.length; j++) {
if (temp == ary2[j]) {
flag = true;//如果有相同元素
}
}
if (flag) {
set.remove(temp);//就从集合里移除
}
}
int[] result = new int[set.size()];//新数组,用于保存不同的元素
Iteratorit = set.iterator();//迭代器
int index = 0;
while(it.hasNext()){//遍历给数组赋值
result[index] = it.next();
index++;
}
System.out.println(Arrays.toString(result));//输出新数组,
}
}
输出
[-2, 2, 5, 6, 8]
说明, 由于HashSet是无序不重复的保存元素,所以就算同一数组有多个相同数字,也当成一个数字,比如ary1里,2个8,实际只存储一个8.