http://www.verejava.com/?id=16992640551624
/**
数组分类
1. 一维数组
1.1 一维数组的定义和初始化
1.2 对一维数组的操作, 遍历,添加,插入,修改,删除,排序,查找
2. 二维数组
2.1 二维数组的定义和初始化
2.2 二维数组的遍历
3. 多维数组
4. 增强for循环
*/
public class Array {
public static void main(String[] args) {
//一维数组的定义和初始化
//静态定义一维数组
int[] scores = { 90, 70, 50, 80, 60, 85 };
//动态定义一维数组
int[] arr = new int[6];
arr[0] = 90;
arr[1] = 70;
arr[2] = 50;
arr[3] = 80;
arr[4] = 60;
arr[5] = 85;
//一维数组遍历,打印出数组scores的成绩
for (int i = 0; i < scores.length; i++) {
System.out.print(scores[i] + ",");
}
}
}
//数组为字符串1
public class Test1 {
public static void main(String[] args) {
// 书架上放了一组图书, 打印出这组图书的书名
//创建一个存放书的书架, 定义一个空的存放书的数组 0,1,2,3
String[] books = new String[4]; // 4是数组的长度
//将书存入数组 books
books[0] = "乔布斯传";
books[1] = "从优秀到卓越";
books[2] = "人生不设限";
books[3] = "态度决定一切";
//打印出这组图书的书名
//System.out.println(books[2]);
//数组的遍历
System.out.println(books.length); //数组的元素个数
for (int i = 0; i < books.length; i++) {
System.out.println(books[i]);
}
}
}
//数组为字符串 2
public class Test2 {
public static void main(String[] args) {
//定义一个初始化的数组
int a = 0;
String[] books = { "乔布斯传", "从优秀到卓越", "人生不设限", "态度决定一切" };
for (int i = 0; i < books.length; i++) {
System.out.println(books[i]);
}
//王涛中考 考了 语文 ,数学,英语 分别为 90, 95, 100
int[] scores = { 90, 95, 100 };
for (int i = 0; i < scores.length; i++) {
System.out.println(scores[i]);
}
}
}