8. 数组
- 数组示例
int[] scores = {78,89,98,93,88};
int score[] = new int[]{78,89,98,93,88};
1
2
2
使用数组 (1)声明数组:int[] scores;(2)分配空间:scores = new int[5];(3)赋值:scores[0]=89;
使用Arrays类操作Java中的数组(Arrays类包含在java.util包中) (1)排序:Arrays.sort(数组名);(2)将数组转换成字符串:Arrays.toString(数组名);
使用foreach操作数组
for(String hobby : hobbys){
System.out.println(hobby);
}
1
2
3
2
3
- 二维数组 (1)声明数组:int[][] scores;(2)分配空间:scores = new int[5][5];(3)赋值:scores[0][1]=89; 注意: 在定义二维数组时也可以只指定行的个数,然后再为每一行分别指定列的个数。如果每行的列数不同,则创建的是不规则的二维数组。
编辑 (opens new window)
上次更新: 2021/02/16, 14:20:12