Peer-reviewed code snippets that anyone can edit
A wiki for useful code snippets
Double Brace Initialisation
r4 r5
17
17
    add(5);
18
18
}};
19
19
 
20
20
System.out.println(list);
21
[/code]
22
 
23
[code=java]
24
Map<Integer, String> map = new HashMap<Integer, String>() {{
25
    put(1, "one");
26
    put(2, "two");
27
    put(3, "three");
28
    put(4, "four");
29
    put(5, "five");
30
}};
31
 
32
System.out.println(map);
21
33
[/code]
22
34
 
23
35
But can also be useful in GUI programming:
24
36
 
Tags added:
Tags removed: