我正在尝试使用以下Swift代码将名为temp
的字符串添加到名为fourth_degree
的数组的末尾:
fourth_degree.append(temp)
但是我不断收到以下错误:
Cannot use mutating member on immutable value: "fourth_degree" is a 'let' constant.
答案 0 :(得分:0)
只需在数组声明中将let更改为var;
var yourArray: [YourArrayType] = []