gpt4 book ai didi

字典向后打印结果

转载 作者:行者123 更新时间:2023-11-30 12:26:04 26 4
gpt4 key购买 nike

在视频教程中:

16 分钟快速无脚本教程介绍 Apple Swift 编程语言 http://youtu.be/3tZig9AWMdc?t=9m10s

我做了和他一样的事情,但结果却相反

var names = [
"1" : "...",
"2" : "...2"
]

for (k,v) in names {
println("key is \(k) : value is: \(v)")
}

输出:

Hello, World!
key is 2 : value is: ...2
key is 1 : value is: ...

我在这里缺少什么?

最佳答案

你什么都没有错过。

字典是无序集合。

来自the docs :

Swift’s Dictionary type is an unordered collection. The order in which keys, values, and key-value pairs are retrieved when iterating over a dictionary is not specified.

关于字典向后打印结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44205884/

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