I would like to concatenate two array lists as it shows in the answer:
final List<String> l1 = Lists.newArrayList(...);
final List<String> l2 = Lists.newArrayList(...);
List<String> l = new ArrayList<String>() { { addAll(l1); addAll(l2); } };
Is there any non style reason I should not use it this way?
Well, first of all, it depends on what you wish to do with duplicate elements. This code will keep any duplicates (i.e. if
l1
andl2
both contain"someString"
,l
will contain two"someString"
), so it's not really a union operation. Calling it a concatenation of two lists would be more accurate.Other than that, using the "double brace" is actually creating an instance of an anonymous class that extends ArrayList. I think it's a bad code style.
is clearer and is not longer to write.