数组是相同类型
数据的有序集合,每一个数据称作一个数组元素,每个数组元素可以通过一个下标来访问它们
/*定义*/
dataType[] arrayRefVar;
//或
dataType arrayRefVat[];
/*创建*/
dataType[] arrayRefVat = new dataType[arraysize];
package com.s1lu.array;
/**
* @Author S1Lu
* @create 2022/10/29 20:42
*/
public class Demo01 {
public static void main(String[] args) {
int[] nums; //1、定义
//或者
//int nums[];
nums = new int[5]; //2、定义数组的长度为5
//3、赋值
nums[0] = 1;
nums[1] = 1;
nums[2] = 2;
nums[3] = 3;
nums[4] = 4;
//计算总和
int s = 0;
for(int i =0;i<nums.length;i++){
s += nums[i];
}
System.out.println(s);
}
}
package com.s1lu.array;
/**
* @Author S1Lu
* @create 2022/11/8 17:02
*/
public class Demo02 {
public static void main(String[] args) {
//静态初始化 :创建 + 赋值
int [] a = {1,2,3,4,5,6};
System.out.println(a);
//动态初始化:包含默认初始化
int[] b = new int[10];
b[0] = 10;
System.out.println(b[0]);
//默认初始化 :int类型默认为0
System.out.println(b[1]);
System.out.println(b[2]);
}
}
下标的合法区间为:[0,length-1],越界报错java.lang.ArrayIndexOutOfBoundsException
package com.s1lu.array;
/**
* @Author S1Lu
* @create 2022/11/8 17:14
*/
public class Demo03 {
public static void main(String[] args) {
int[] arrays = {1,2,3,4,5};
for (int i=0;i<arrays.length;i++){
System.out.println(arrays[i]);
}
}
}
package com.s1lu.array;
/**
* @Author S1Lu
* @create 2022/11/8 17:14
*/
public class Demo03 {
public static void main(String[] args) {
int[] arrays = {1,2,3,4,5};
for (int array :arrays){
System.out.println(array);
}
}
}
package com.s1lu.array;
/**
* @Author S1Lu
* @create 2022/11/11 10:03
*/
public class Demo04 {
public static void main(String[] args) {
int [][] array= {{1,2},{2,3},{3,4}};
for (int i =0 ; i < array.length ; i ++ ){
for (int j =0 ; j < array[i].length ; j ++ ) {
System.out.println(array[i][j]);
}
}
}
}
其他的查看JDK帮助文档
package com.s1lu.array;
import java.util.Arrays;
/**
* @Author S1Lu
* @create 2022/11/11 10:07
*/
public class Demo05 {
public static void main(String[] args) {
int[] a ={1,2,3,4,5,6};
System.out.println(a); // [I@1540e19d
System.out.println(Arrays.toString(a)); //[1, 2, 3, 4, 5, 6]
}
}
package com.s1lu.array;
import java.util.Arrays;
/**
* @Author S1Lu
* @create 2022/11/11 10:15
*/
public class Demo06 {
public static void main(String[] args) {
int[] a ={1,3,4,2,11,6};
Arrays.sort(a); //对数组排序
System.out.println(Arrays.toString(a)); //[1, 2, 3, 4, 6, 11]
}
}
当-个数组中大部分元素为0,或者为同一值的数组时,可以使用稀疏数组来保存该数组。
稀疏数组的处理方式是: