数组
- 数组时相同类型数据的有序集合
- 数组描述的是相同类型的若干个数据,按照一定的先后次序排列组合而成
- 其中,每一个数据称作一个数组元素,每一个数组元素可以通过一个下标来访问它们。
数组声明创建
首先必须声明数组变量,才能在程序中使用数组。下面是声明数组变量的语法。
- da taType[] arrayRefVar //首选方法
- dateType arrayRefVar[] //效果相同,但不是首选方法
java语言使用new操作符来创建数组,语法如下:
- dateType[] arrayRefVar = new dataType[arraySize]
数组的元素是通过索引访问的,数组索引从 0 开始
获取数组长度
- arrays.length
数组初始化
-
静态初始化
- int[] a = {1,2,3,4};
- Man[] mans = {new Man(1,1), new Man(2,2)};
-
动态初始化
- Int[] a = new int[2];
- a[0] = 1;
- a[1] = 2;
-
默认初始化
- 数组时引用类型,它的元素相当于是实例变量,因此数组一经分配空间,其中的每一个元素也被按照实例变量同样的方式被阴式初始化。
数组的四个基本特点
- 数组的长度是确定的。数组一旦被创建,它的大小就是不可以改变的
- 数组的元素必须是相同类型,不允许出现混合类型
- 数组中的元素可以是任何数据类型,包括基本类型和引用类型
- 数组变量属引用类型,数组也可以看成是在堆中的,因此数组无论保存原始类型还是其他对象类型,数组对象本身是在堆中的。
数组边界
- 下标的合法区间:【0,length-1】,如果越界就会报错
- ArrayIndexOutOfBounds Exception:数组下标越界异常
-
小结
- 数组是相同数据类型的有序集合
- 数组也是对象。数组元素相当于对象的成员变量。
- 数组长度是确定的,不可变的。如果越界,则报错》ArrayIndexOutOfBoundsException
多维数组
- 多维数组可以看成是数组的数组
1
2
|
//二维数组 两行五列
int a[][] = new int [ 2 ][ 5 ];
|
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.sxl.array;
public class Demo04 {
public static void main(String[] args) {
//二维数组
int [][] array = {{ 1 , 2 },{ 3 , 4 },{ 5 , 6 }};
for ( int i = 0 ; i < array.length; i++) {
for ( int j = 0 ; j < array[i].length; j++){
System.out.println(array[i][j]);
}
}
}
}
|
Arrays类
-
数组工具类
java.util.Arrays
-
Arrays
类中的方法都是static静态方法,在使用的时候可以直接使用类名进行调用 -
对数组排序:
sort
方法。 -
比较数组:通过
equals
方法比较数组中元素是否相等
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
package com.sxl.array;
import java.util.Arrays;
public class Demo01 {
public static void main(String[] args) {
//静态初始化:创建 赋值
int [] array = { 1 , 2 , 3 , 4 , 5 };
//动态初始化 :包含默认初始化
int [] b = new int [ 10 ];
b[ 0 ] = 10 ;
//printArray(array);
// printString(array);
System.out.println( "==============" );
int [] result = reverse(array);
printArray(result);
}
public static int [] reverse( int [] array){
int [] result = new int [array.length];
for ( int i = 0 ,j = result.length- 1 ; i < array.length ; i++,j--) {
result[j] = array[i];
} //加入Java开发交流君样:593142328一起吹水聊天
return result;
}
public static void printArray( int [] array){
for ( int i = 0 ; i < array.length; i++) {
System.out.print(array[i] + " " );
}
System.out.println();
System.out.println( "=================" );
//增强循环
for ( int arr: array) {
System.out.print(arr+ " " );
}
System.out.println();
System.out.println( "=================" );
String result = Arrays.toString(array);
System.out.println(result);
}
public static void printString( int [] array){
String result = Arrays.toString(array);
System.out.println(result);
for ( int i = 0 ; i < array.length; i++) {
if (i == 0 ){
System.out.print( "[" +array[i] + ", " );
} else if (i == array.length - 1 ){
System.out.print(array[i]+ "]" );
} else
System.out.print(array[i]+ ", " );
}
}
}
package com.sxl.array;
public class Demo02 {
public static void main(String[] args) {
new Demo02();
int [] array = { 1 , 2 , 5 , 3 , 9 , 7 , 6 , 3 , 2 };
sort(array);
}
//冒泡排序
public static void sort( int [] array){
int temp = 0 ;
for ( int i = 0 ; i < array.length; i++) {
boolean flag = false ;
for ( int j = 0 ; j < array.length- 1 ; j++){
if (array[j+ 1 ]<array[j]){
temp = array[j];
array[j] = array[j+ 1 ];
array[j+ 1 ] = temp;
flag = true ;
}
}
if (flag == false ){
break ;
}
}
for ( int i = 0 ; i < array.length; i++) {
System.out.print(array[i]+ " " );
}
}
}
package com.sxl.array;
public class Demo03 { //加入Java开发交流君样:593142328一起吹水聊天
public static void main(String[] args) {
int [] array = { 1 , 2 , 3 , 4 , 5 };
//打印所有数据元素
for ( int i = 0 ; i < array.length; i++) {
System.out.print(array[i] + " " );
}
//计算所有数据元素的和
System.out.println( "=========" );
int sum = 0 ;
for ( int i = 0 ; i < array.length; i++) {
sum += array[i];
}
System.out.println(sum);
//查找最大元素
int max = array[ 0 ];
for ( int i = 1 ; i < array.length; i++) {
if (max < array[i]){
max = array[i];
}
}
System.out.println(max);
}
}
|
稀疏数组
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package com.sxl.array;
public class Demo05 {
public static void main(String[] args) {
int [][] array = new int [ 11 ][ 11 ];
array[ 1 ][ 2 ] = 1 ;
array[ 2 ][ 3 ] = 2 ;
//输出原始数组
for ( int [] a: array) {
for ( int b: a) {
System.out.print(b+ "\t" );
}
System.out.println();
}
//获取有效值的个数
int sum = 0 ;
for ( int i = 0 ; i < 11 ; i++) {
for ( int j = 0 ; j < 11 ; j++){
if (array[i][j]!= 0 ){
sum++;
}
}
}
System.out.println( "有效值的个数是:" +sum);
//创建一个稀疏数组 第一行存放: 行数 列数 有效数个数
int [][] array2 = new int [sum+ 1 ][ 3 ];
array2[ 0 ][ 0 ] = 11 ; //行数
array2[ 0 ][ 1 ] = 11 ; //列数
array2[ 0 ][ 2 ] = sum; //有效数个数
//遍历原始二维数组,将非零数组存入稀疏数组中
//加入Java开发交流君样:593142328一起吹水聊天
int count = 0 ;
for ( int i = 0 ; i < array.length; i++) {
for ( int j = 0 ;j < array[i].length; j++){
if (array[i][j]!= 0 ){
count++;
array2[count][ 0 ] = i;
array2[count][ 1 ] = j;
array2[count][ 2 ] = array[i][j];
}
}
}
System.out.println( "输出稀疏数组" );
for ( int i = 0 ; i < array2.length; i++) {
for ( int j = 0 ; j < array2[i].length; j++){
System.out.print(array2[i][j]+ "\t" );
}
System.out.println();
}
}
}
|
总结
本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注服务器之家的更多内容!
原文链接:https://blog.csdn.net/wj1314250/article/details/118641181