数组
声明一个数组
数据类型[ ] 数组名;
数据类型 数组名[ ]
int scores [];
int [] scores;
分配空间
数组名 = new 数据类型 [ 数组长度 ];
int scores [];
scores = new int[5]; // 长度为5的整数数组
int [] scores = new int[5]; // 合并为一起
赋值
scores[0] = 20;
scores[1] = 40;
另一种创建数组的方法
// 定义一个数组,保存五名学生的成绩
int[] scores = { 78, 93, 97, 84, 63 };
// 等价于
int [] scores = new int[]{ 78, 93, 97, 84, 63 };
// 输出数组中的第二个成绩
System.out.println("数组中的第2个成绩为:" + scores[1]);
遍历数组
// 定义一个长度为 3 的字符串数组,并赋值初始值
String[] hobbys = { "sports", "game", "movie" };
System.out.println("循环输出数组中元素的值:");
// 使用循环遍历数组中的元素
for(int i =0; i<hobbys.length; i++) {
System.out.println(hobbys[i]);
}
实例1
package max_min;
/**
*
* @author zjj
* 求数组中最大最小值、以及平均值
*/
public class max_min {
public static void main(String [] args) {
int nums [] = {12,34,23,45,65,76};
int min = nums[0];
int max = nums[0];
double sum = 0;
double avg = 0;
for(int i =0; i< nums.length; i++) {
if(nums[0] > max) {
max = nums[i];
}
if(nums[0] < min) {
min = nums[i];
}
sum+=nums[i];
}
avg = sum / nums.length;
System.out.println("数组中的最大值:" + max);
System.out.println("数组中的最小值:" + min);
System.out.println("数组中的平均值:" + avg);
}
}
使用 Arrays 类操作 Java 中的数组
Arrays 类是 Java 中提供的一个工具类,在 java.util 包中。该类中包含了一些方法用来直接操作数组
排序
- Array.sort(数组名)
package Array_class;
import java.util.Arrays; // 引入工具类
public class Array_class {
public static void main(String [] args) {
int [] scores = {78,34,56,23,87};
Arrays.sort(scores); // 使用Arrays类中的sort方法来排序(升序)
System.out.println("转换为字符串为"+ Arrays.toString(scores)); // 将数组转换为字符串
for(int i =0; i < scores.length; i++) {
System.out.println(scores[i]);
}
}
}
使用 foreach 操作数组
package Array_class;
import java.util.Arrays; // 引入工具类
public class Array_class {
public static void main(String [] args) {
int [] scores = {78,34,56,23,87};
Arrays.sort(scores); // 使用Arrays类中的sort方法来排序(升序)
System.out.println("转换为字符串为"+ Arrays.toString(scores)); // 将数组转换为字符串
// for循环遍历
for(int i =0; i < scores.length; i++) {
System.out.println(scores[i]);
}
// foreach遍历
for ( int score: scores ) {
System.out.println(score);
}
}
}
二维数组
public class HelloWorld {
public static void main(String[] args) {
// 定义两行三列的二维数组并赋值
String [][] names={{"tom","jack","mike"},{"zhangsan","lisi","wangwu"}};
// 通过二重循环输出二维数组中元素的值
for (int i = 0; i < names.length ; i++) {
for (int j = 0; j < names[i].length; j++) {
System.out.println(names[i][j]);
}
System.out.println("\n");
}
}
}
1、 声明数组并分配空间
2、 赋值
也可以在声明数组的同时为其赋值
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。