当前位置: 技术问答>java相关
二维数组问题
来源: 互联网 发布时间:2015-01-03
本文导语: 如何得到2维数组的行和列的维数 例:int [][] x; x = new int[4][5]; x.length得到的是多少? | x.length返回行的值! x[i].length返回列的值! 其中0
如何得到2维数组的行和列的维数
例:int [][] x;
x = new int[4][5];
x.length得到的是多少?
例:int [][] x;
x = new int[4][5];
x.length得到的是多少?
|
x.length返回行的值!
x[i].length返回列的值!
其中0
x[i].length返回列的值!
其中0