以下实例演示了如何使用 retainAll () 方法来计算两个数组的交集:
Main.java 文件
以上代码运行输出结果为:
array1 数组元素:[common1, common2, notcommon2] array2 数组元素:[common1, common2, notcommon, notcommon1] array2 & array1 数组交集为:[common1, common2]