“Schnelles Wörterbuch” Code-Antworten

Erstellen Sie Wörterbuch Swift

var someDict:[String:Int] = ["One":1, "Two":2, "Three":3] // creates dictionary
var someVar = someDict["One"] // accesses the value of key "One"

print("The value of key = One is \(someVar)")
sej

Schnelles Wörterbuch

// dictionary with keys and values of different data types
var numbers = [1: "One", 2: "Two", 3: "Three"]
print(numbers)
SAMER SAEID

Erstellen Sie ein Wörterbuch in Swift

var capitalCity = ["Nepal": "Kathmandu", "Italy": "Rome", "England": "London"]
print(capitalCity)
SAMER SAEID

So erhalten Sie Wertliste aus bestimmten Schlüssel im Array -Objekt in Swift

import Foundation

let strings = [
    "one",
    "two",
    "three"
]

let ints = strings.map { (string) -> Int in
    return string.count
}
Homeless Hare

Ähnliche Antworten wie “Schnelles Wörterbuch”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen