正如评论员@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如果您只想零,那么循环现在是多余的!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)