1>声明
语法:
数据类型[ ] 数组名;
或者 数据类型 数组名[ ];
2>分配空间
语法:
数组名 = new 数据类型 [ 数组长度 ];
3>几种写法
1. 直接定义
int scores[] = {11,25,35,99,52,43};
int[] scores = {11,25,35,99,52,43};
int[] scores = new int[]{11,25,35,99,52,43};
int scores[] = new int[]{11,25,35,99,52,43};
2. 先定义再赋值
int scores[] = new int[6];
scores[0] = 11;
…
scores[5] = 43;
4>使用 Arrays 类操作 Java 中的数组
<1>排序
语法:
Arrays.sort(数组名);
<2>将数组转换为字符串
语法:
Arrays.toString(数组名);
5>遍历数组
<1>for
<2>foreach
语法:
6>二维数据
<1>声明数组并分配空间
或者
如:
<2>赋值
<3>处理数组