错误:多维数组中“数组索引超出范围”

错误:多维数组中“数组索引超出范围”,第1张

错误:多维数组中“数组索引超出范围”

正如评论员@C_X和@MartinR所说,您的数组为空。这是根据需要初始化的方法…

var tile = [[Int]](count:4, repeatedValue: [Int](count: 4, repeatedValue: 0))for index in 0 ..< 4 {    for sindex in 0 ..< 4 {        tile[index][sindex] = 0 // no error here now...        print("(index) (sindex)")    }}

…当然,

for
如果您只想零,那么循环现在是多余的!



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5049263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存