gpt4 book ai didi

Swift:数组中的字典

转载 作者:搜寻专家 更新时间:2023-11-01 05:54:22 24 4
gpt4 key购买 nike

数据:

[
{ firstName: "Foo", lastName: "Bar" },
{ firstName: "John", lastName: "Doe" }
]

如何使用 swift 数组和字典获得这种结构?此数据显示数组内的字典,对吗?所以我建议:

var persons:Array = [Dictionary<String, String>()]

但这给了我错误:

Cannot convert the expressions type () to type Array<T>

有什么想法吗?

最佳答案

正确的做法是:

var persons = [Dictionary<String, String>]()

相当于:

var persons = [[String : String]]()

您的代码所做的是创建一个数组,其中填充了 Dictionary<String, String> 的实例。 ,而我假设您想要一个包含 Dictionary<String, String> 元素的数组的空实例类型。

关于Swift:数组中的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26734986/

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