gpt4 book ai didi

cocoa - 在 Swift 的字典中按名称键/值对

转载 作者:搜寻专家 更新时间:2023-11-01 06:24:11 25 4
gpt4 key购买 nike

是否可以通过 key 访问单个 Dictionary 条目的 keyvalue >值,而不是0 & 1

在例子中:

let rockyPlanets: Dictionary<String, Int> = [
// Alphabetical order
"Earth": 3, "Mars": 4, "Mercury": 1, "Venus": 2
]
for eachPlanet in rockyPlanets {
println("\(eachPlanet.0) is at position \(eachPlanet.1)")
}

如何以这种方式通过(不是索引)访问键/值:

for eachPlanet in rockyPlanets {
println("\(eachPlanet.key) is at position \(eachPlanet.value)")
}

最佳答案

这是您要找的吗?

for (key, value) in someDict {
// ...
}

在你的情况下:

for (planet, position) in rockyPlanets {
println("\(planet) is at position \(position)")
}

关于cocoa - 在 Swift 的字典中按名称键/值对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26823651/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com