您的位置:首页 > 编程语言 > Java开发

java二维数组简单遍历方式

2016-11-22 10:17 344 查看
1、代码如下:

public class OverrideTest {
public static void main(String[] args){
/* h2 test=new h2(1);
test.t1();
test.t2('c');*/
int temp[][]=new int[3][];
temp[0]=new int[3];
temp[1]=new int[1];
temp[2]=new int[2];
temp[0][0]=10;
temp[0][1]=11;
temp[0][2]=12;
temp[1][0]=20;
temp[2][0]=30;
temp[2][1]=31;
for(int i=0;i<temp.length;i++)
{
for(int j=0;j<temp[i].length;j++)
System.out.println(temp[i][j]);
}
}
}


2、运行结果如下:

10
11
12
20
30
31

Process finished with exit code 0


                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: