gpt4 book ai didi

arrays - 在 Swift 中修改字典数组

转载 作者:搜寻专家 更新时间:2023-10-31 22:03:46 25 4
gpt4 key购买 nike

我是 Swift 的新手,在理解数组和字典的某些方面时遇到了一些麻烦。

我有一个字典数组,为此我使用了类型别名——例如

typealias myDicts = Dictionary<String, Double>

var myArray : [myDicts] = [
["id":0,
"lat”:55.555555,
"lng”:-55.555555,
"distance":0],
["id":1,
"lat": 44.444444,
"lng”:-44.444444,
"distance":0]
]

然后我想遍历数组中的字典并更改“距离”键值。我是这样做的:

for dict:myDicts in myArray {

dict["distance"] = 5

}

或者甚至用许多不同的方法特别确保 5 是双数,例如

for dict:myDicts in myArray {

let numberFive : Double = 5

dict["distance"] = numberFive

}

我所有的尝试都会导致错误:

 @lvalue $T5' is not identical to '(String, Double)

它似乎表现得好像里面的字典是不可变的“let”而不是“var”。所以我随机尝试了这个:

for (var dict:myDicts) in myArray {

dict["distance"] = 5

}

这消除了错误,并且在 for 循环中确实为键分配了 5,但从长远来看,这似乎并没有真正修改数组本身。我做错了什么?

最佳答案

在 Swift 的 for-in 循环中隐式声明的变量默认是常量 (let),这就是为什么你不能在循环中直接修改它的原因。

for-in documentation有这个:

for index in 1...5 {
println("\(index) times 5 is \(index * 5)")
}

In the example above, index is a constant whose value is automatically set at the start of each iteration of the loop. As such, it does not have to be declared before it is used. It is implicitly declared simply by its inclusion in the loop declaration, without the need for a let declaration keyword.

正如您所发现的,您可以通过使用 var 显式声明它来使其成为一个变量。但是,在这种情况下,您试图修改一个字典,它是一个结构,因此是一个 value type。并在分配时复制。当您执行 dict["distance"] = 5 时,您实际上是在修改字典的副本,而不是存储在数组中的原始副本。

你仍然可以修改数组中的字典,你只需要直接通过索引遍历数组来完成:

for index in 0..<myArray.count {
myArray[index]["distance"] = 5
}

这样,您一定会修改原始字典而不是副本。

话虽这么说,@matt 关于使用自定义类的建议通常是最好的选择。

关于arrays - 在 Swift 中修改字典数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25979055/

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