当前位置 : 主页 > 手机开发 > 其它 >

字典打印键和Swift 4中的值

来源:互联网 收集:自由互联 发布时间:2021-06-11
参见英文答案 From which direction swift starts to read dictionaries? 1个 您好我在Xcode9尝试了打印字典项目.像这样: var items = ["Bear":"0", "Glass":"1", "Car":"2"]for (key,value) in items{print("\(key) : \(value)")} 输
参见英文答案 > From which direction swift starts to read dictionaries?                                     1个
您好我在Xcode9尝试了打印字典项目.像这样:

var items = ["Bear":"0", "Glass":"1", "Car":"2"]

for (key,value) in items{

print("\(key) : \(value)")

}

输出:

Glass : 1
Bear : 0
Car : 2

为什么输出不是这样的:熊:0,玻璃:1,汽车:2
我不明白这个输出的原因.

字典:

字典存储相同类型的键与集合中相同类型的值之间的关联,而没有定义的排序.

每个值都与唯一键相关联,该唯一键充当字典中该值的标识符.与数组中的项目不同,字典中的项目没有指定的顺序.

Array – 数组在有序列表中存储相同类型的值.

集合 – 集合在集合中存储相同类型的不同值,没有定义的顺序.

从Apple documentation起

enter image description here

网友评论