“Kotlin leere Karte” Code-Antworten

Kotlin leere Karte

/*
     MUTABLE MAPS
*/


val map = mutableMapOf<String, Int>()
simondoesstuff

Kotlin leere Karte

/*
     IMMUTABLE MAPS
*/


val map = emptyMap<String, Int>()
println("map.isEmpty() is ${map.isEmpty()}") // true

val anotherMap = mapOf<String, Int>()
// Empty maps are equal
println("map == anotherMap is ${map == anotherMap}") // true
simondoesstuff

Ähnliche Antworten wie “Kotlin leere Karte”

Fragen ähnlich wie “Kotlin leere Karte”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen