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局部变量转换为可变变量所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)