标签:random rand cores mat 二维 类型 java foreach 遍历
声明
数据类型[] 数组名;
或 数据类型 数组名[]
int[] scores; int scores[];
分配空间
数组名= new 数据类型[数组长度];
scores=new int[5];
声明和分配空间一起
int[] scores=new int[5];
赋值
scores[0]= 1;..
声明 分配空间 赋值一起
int[] scores={1,2,3,4}
或 int[] scores=new int[]{1,2,3,4}
4)foreach 操作数组
For(元素类型 元素变量 :遍历对象){ }
例 for(String score : scores){}
5)nums[i]=(int)(Math.random()*100)
随机生成100以内的整数元素
1)声明并分配空间
数据类型[][] 数组名= new 数据类型[行的个数][列的个数]
Int[][] num=new int[2][3];
2)声明的同时为其赋值
数据类型[][] 数组名={{1,2,3},{1,2,3},{1,2,3}}
3)二维数组的二重循环输出
For(int i=0; i < num.length;i++){
For(int j=0;j < num[i].length;j++){}
}
标签:random rand cores mat 二维 类型 java foreach 遍历
原文地址:https://www.cnblogs.com/ww11/p/9299309.html