gpt4 book ai didi

swift - 定义 Swift 字典的多种方法

转载 作者:搜寻专家 更新时间:2023-11-01 06:07:09 29 4
gpt4 key购买 nike

在 swift 中有很多定义字典的方法。那么,所有这些都是相同的吗?

var dic1 = Dictionary<String, Int>()

var dic2 = [String:Int]()

var dic3: Dictionary = Dictionary<String, Int>()

var dic4: Dictionary = [String:Int]()

var dic5: Dictionary<String, Int> = Dictionary<String, Int>()

var dic6: Dictionary<String, Int> = [String: Int]()

最佳答案

是的,所有这 6 行都产生相同的结果:

  • 一个空的
  • 可变
  • 字典
  • key 的类型为 String
  • 并且 value 的类型为 Int

关于swift - 定义 Swift 字典的多种方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34594197/

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