gpt4 book ai didi

swift - 错误: binary operator '+=' cannot be applied to two '[Int : String]' operands

转载 作者:行者123 更新时间:2023-11-30 10:08:33 24 4
gpt4 key购买 nike

我正在尝试向数组添加 a 值,但我不断出现此错误。不确定我做错了什么。我猜这是因为我试图添加一个文字和一个整数?我需要定义这个吗?我该如何去做呢。

var numberDictionary = [1 : "one", 2 : "two", 3 : "three", 4 : "four"]
// Add 5 : "five" to this dictionary
// WORK HERE

numberDictionary += [5 : "five"]

最佳答案

你应该这样做:

numberDictionary[5] = "five"

此外,字典被称为字典而不是数组。

关于swift - 错误: binary operator '+=' cannot be applied to two '[Int : String]' operands,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34617458/

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