I know I can declare and initialize a List
using double braces:
// (1)
List<Object> myList = new ArrayList<object>(){{
add("Object1");
add("Object2");
}};
But I want a List
of <Map<Object,Object>>
:
// (2)
List<Map<Object,Object>> myList = new ArrayList<Map<Object,Object>>();
How can I use double brace initialization (see (1)) with nested collections? My goal is to declare and initialize the data structure in a single line.
Also I would like to know if there are certain drawbacks when using double brace initialization I have to be aware of.
It's not good idea, because it's hard to read, but you can do following: