标签: c# arrays object multidimensional-array
在过去的两周里,我试图了解2D数组。我在网上搜索了我的问题并找到了答案,但我仍然收到错误。任何洞察我为什么会得到这个错误将不胜感激! :)
Error: Index was outside the bounds of the array.
答案 0 :(得分:2)
在线for (int j = 0; j < employee.getLength(1); i++) 您需要将i++替换为j++
for (int j = 0; j < employee.getLength(1); i++)
i++
j++
其他一切看起来都不错。
答案 1 :(得分:2)
在内部for循环中,您还增加了i而不是j。
for
i
j