我想为二维数组分配空间,我想以一种干净的方式这样做。address [10]intmyLength := len(address)// 1. but this not work at allmatrix := [myLength][myLength]byte// 2. and this initializes 10 arrays with length 0matrix := make([][]int, myLength, myLength)第一次尝试时出现错误:非常量数组绑定 l
1 回答
幕布斯7119047
TA贡献1794条经验 获得超8个赞
没有“一个班轮”的方式来做到这一点。只需这样做:
matrix := make([][]int, myLength)
for i : = 0; i < myLength; i++ {
matrix[i] = make([]int, myLength)
}
- 1 回答
- 0 关注
- 134 浏览
添加回答
举报
0/150
提交
取消