Method 1:
arr1.retainAll(arr2)
Method 2:
List<String> arr1;
List<String> arr2 ;
for(String s: arr2){
if(arr1.contains(s))
arr1.remove(s);
}
I personally feel that 1 is better being more expressive and performance efficient. If arr1 is not equal to arr2, JDK uses System.arraycopy() to copy complete arr2 to arr1 rather than removing individual elements. System.arraycopy is implemented natively and is very fast.
Following is reference to JDK code doing this.
private boolean batchRemove(Collection<?> c, boolean complement) {
final Object[] elementData = this.elementData;
int r = 0, w = 0;
boolean modified = false;
try {
for (; r < size; r++)
if (c.contains(elementData[r]) == complement)
elementData[w++] = elementData[r];
} finally {
// Preserve behavioral compatibility with AbstractCollection,
// even if c.contains() throws.
if (r != size) {
System.arraycopy(elementData, r,
elementData, w,
size - r);
w += size - r;
}
if (w != size) {
for (int i = w; i < size; i++)
elementData[i] = null;
modCount += size - w;
size = w;
modified = true;
}
}
return modified;
}
If only very few elements would be different, then method 2 would have been better.