Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

new hashmap java


// this works for up to 10 elements:
Map<String, String> test1 = Map.of(
    "a", "b",
    "c", "d"
);

// this works for any number of elements:
import static java.util.Map.entry;    
Map<String, String> test2 = Map.ofEntries(
    entry("a", "b"),
    entry("c", "d")
);

Source by nullorempty.org #
 
PREVIOUS NEXT
Tagged: #hashmap #java
ADD COMMENT
Topic
Name
1+8 =