Last active
March 27, 2025 06:07
-
-
Save igstan/98eabb6b1b9fb6dc0e660960fe966034 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.HashMap; | |
public class DoubleBraceInit { | |
public static void main(String[] args) { | |
var m1 = new HashMap<>() {{ | |
put("k1", 1); | |
put("k2", 2); | |
put("k3", 3); | |
}}; | |
var m2 = new HashMap<>() {{ | |
put("k1", new HashMap<>() {{ | |
put("k1.1", 11); | |
put("k1.2", 12); | |
}}); | |
put("k2", new HashMap<>() {{ | |
put("k2.1", 21); | |
put("k2.2", 22); | |
}}); | |
}}; | |
System.out.println("m1: " + m1); | |
System.out.println("m2: " + m2); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment