gpt4 book ai didi

dictionary - 如何从 Swift 中的字典中获取键的值?

转载 作者:IT王子 更新时间:2023-10-29 04:57:46 25 4
gpt4 key购买 nike

我有一本 Swift 字典。我想获得我的 key 的值(value)。键方法的对象对我不起作用。如何获取字典键的值?

这是我的字典:

var companies = ["AAPL" : "Apple Inc", "GOOG" : "Google Inc", "AMZN" : "Amazon.com, Inc", "FB" : "Facebook Inc"]

for name in companies.keys {
print(companies.objectForKey("AAPL"))
}

最佳答案

使用下标访问字典键的值。这将返回一个可选的:

let apple: String? = companies["AAPL"]

if let apple = companies["AAPL"] {
// ...
}

您还可以枚举所有键和值:

var companies = ["AAPL" : "Apple Inc", "GOOG" : "Google Inc", "AMZN" : "Amazon.com, Inc", "FB" : "Facebook Inc"]

for (key, value) in companies {
print("\(key) -> \(value)")
}

或者枚举所有的值:

for value in Array(companies.values) {
print("\(value)")
}

关于dictionary - 如何从 Swift 中的字典中获取键的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25741114/

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