其他分享
首页 > 其他分享> > 查找两个数组间的差集

查找两个数组间的差集

作者:互联网

查找两个数组中的交集使用ArrayList集合中的removeAll()方法

public static void intersection() {
        ArrayList<String> arr1 = new ArrayList<>();
        arr1.add("eee");
        arr1.add("fgd");
        arr1.add("456");

        ArrayList<String> arr2 = new ArrayList<>();
        arr2.add("eee");
        arr2.add("563");
        arr2.add("45tg");
        arr2.add("4rf");
		
		//集合包含先后没有影响
        arr1.removeAll(arr2);
        System.out.println(arr1);
        arr2.removeAll(arr1);
        System.out.println(arr2);
    }

标签:数组,ArrayList,System,差集,removeAll,add,查找,arr2,arr1
来源: https://blog.csdn.net/xiaopihair123/article/details/122487216