gpt4 book ai didi

向后打印字典结果

转载 作者:行者123 更新时间:2023-11-28 09:38:37 25 4
gpt4 key购买 nike

在视频教程中:

16分钟快速无脚本教程介绍苹果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: ...

我在这里错过了什么?

最佳答案

你没有遗漏任何东西。

Dictionary 是无序集合。

来自 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/26546488/

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