Type Inference for Generic Instance Creation

suggest change

You can use

Map<String, List<String>> myMap = new HashMap<>();

instead of

Map<String, List<String>> myMap = new HashMap<String, List<String>>();

However, you can’t use

List<String> list = new ArrayList<>();
list.add("A");

  // The following statement should fail since addAll expects
  // Collection<? extends String>

list.addAll(new ArrayList<>());

because it can’t compile. Note that the diamond often works in method calls; however, it is suggested that you use the diamond primarily for variable declarations.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Java SE 7 Features:
* Type Inference for Generic Instance Creation

Table Of Contents
8 Arrays
10 Maps
11 Strings
25 JAXB
29 Enums
32 Audio
41 Scanner
63 Logging
75 Lists
78 Sets
89 JAX-WS
96 XJC
98 Process
106 Modules
114 Applets
122 JNDI
139 JavaBean
141 Literals
143 Java SE 7 Features
144 Packages
150 JMX
153 JShell
159 Sockets
167 Enum Map
175 Hashtable
177 SortedMap