swift – 将for局部变量转换为可变变量

swift – 将for局部变量转换为可变变量,第1张

概述我在 *** 场上制作的这段代码代表了我的问题: import Foundationvar countries = ["Poland":["Warsaw":"foo"],"England":["London":"foo"]]for (country, city) in countries { if city["London"] != nil { city["London"] = "Pic 我在 *** 场上制作的这段代码代表了我的问题:
import Foundationvar countrIEs = ["Poland":["Warsaw":"foo"],"England":["London":"foo"]]for (country,city) in countrIEs {  if city["London"] != nil {   city["London"] = "Piccadilly Circus" // error because by default the variables [country and city] are constants (let)  }}

有没有人知道一项工作或最好的方法来使这项工作?

您可以通过在其声明中添加var来使city变为可变
for (country,var city) in countrIEs {

不幸的是,更改它不会影响您的国家/地区词典,因为您将获得每个子词典的副本.要做你想做的事,你需要遍历国家的钥匙并从那里改变一切:

for country in countrIEs.keys {    if countrIEs[country]!["London"] != nil {       countrIEs[country]!["London"]! = "Picadilly Circus"    }}
总结

以上是内存溢出为你收集整理的swift – 将for局部变量转换为可变变量全部内容,希望文章能够帮你解决swift – 将for局部变量转换为可变变量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1089978.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存