“New Hashmap Java” Código de respuesta

New Hashmap Java

Map<String, String> myMap = new HashMap<String, String>() {{
        put("a", "b");
        put("c", "d");
    }};
Fair Fly

Java 11 Inicializar mapa

Map<String, String> emptyMap = Map.of();
Map<String, String> singletonMap = Map.of("key1", "value");
Map<String, String> map = Map.of("key1","value1", "key2", "value2");
Skandal

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")
);

Exuberant Earthworm

Respuestas similares a “New Hashmap Java”

Preguntas similares a “New Hashmap Java”

Más respuestas relacionadas con “New Hashmap Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código