我想为二维数组分配空间,我想以一种干净的方式这样做。
address [10]int
myLength := len(address)
// 1. but this not work at all
matrix := [myLength][myLength]byte
// 2. and this initializes 10 arrays with length 0
matrix := make([][]int, myLength, myLength)
第一次尝试时出现错误:
非常量数组绑定 l
幕布斯7119047
相关分类