“Cómo instanciar el hashmap en Java” Código de respuesta

Cómo instanciar el hashmap en Java

Map<String, String> doubleBraceMap  = new HashMap<String, String>() {{
    put("key1", "value1");
    put("key2", "value2");
}};

public static Map<String, String> articleMapOne;
static {
    articleMapOne = new HashMap<>();
    articleMapOne.put("ar01", "Intro to Map");
    articleMapOne.put("ar02", "Some article");
}
Lonely Lobster

Inicializar el hashmap con valores

public static Map<String, String> articleMapOne;
static {
    articleMapOne = new HashMap<>();
    articleMapOne.put("ar01", "Intro to Map");
    articleMapOne.put("ar02", "Some article");
}
FunnyName

Inicializar el hashmap con valores

Map<String, String> doubleBraceMap  = new HashMap<String, String>() {{
    put("key1", "value1");
    put("key2", "value2");
}};
DevPedrada

Respuestas similares a “Cómo instanciar el hashmap en Java”

Preguntas similares a “Cómo instanciar el hashmap en Java”

Más respuestas relacionadas con “Cómo instanciar el hashmap en Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código