java创建集合类数组_Java集合--ArrayList集合及应⽤JAVA集合
对象数组
集合类之ArrayList
学⽣管理系统
⽃地主案例
< 对象数组
1.1 对象数组描述
A:基本类型的数组:存储的元素为基本类型
int[] arr={1,2,3,4}
B:对象数组:存储的元素为引⽤类型
Student[] stus=new Student[3];
Student代表⼀个⾃定义类
怎么给数组赋值Stus数组中stus[0],stus[1],stus[2]的元素数据类型为Student,
都可以指向⼀个Student对象
1.2 对象数组案例:
创建⼀个学⽣数组,存储三个学⽣对象并遍历
1.2.1 案例代码⼀:
packagecom.gao;/** ⾃动⽣成构造⽅法:
* 代码区域右键 -- Source -- Generate Constructors ⽆参构造⽅法
* 代码区域右键 -- Source -- Generate Constructor 带参构造⽅法
* ⾃动⽣成getXxx()/setXxx():
* 代码区域右键 -- Source -- Generate Getters */
public classStudent {privateString name;private intage;publicStudent() {
}public Student(String name, intage) {this.name =name;this.age =age;
}publicString getName() {returnname;
}public voidsetName(String name) {this.name =name;
}public intgetAge() {returnage;
}public void setAge(intage) {this.age =age;
}
}packagecom.itheima;/** 创建⼀个学⽣数组,存储三个学⽣对象并遍历
*
* 分析:
* A:定义学⽣类
* B:创建学⽣数组
* C:创建学⽣对象
* D:把学⽣对象作为元素赋值给学⽣数组
* E:遍历学⽣数组*/
public classStudentDemo {public static voidmain(String[] args) {//创建学⽣数组
Student[] students = new Student[3];//创建学⽣对象
Student s1 = new Student("曹操",40);
Student s2= new Student("刘备",35);
Student s3= new Student("孙权",30);//把学⽣对象作为元素赋值给学⽣数组
students[0] =s1;
students[1] =s2;
students[2] =s3;//遍历学⽣数组
for(int x=0; x
Student s=students[x];//System.out.println(s);
System.out.Name()+"---"+s.getAge());
}
}
}
1.3 对象数组的内存图
NO.two 集合类ArrayList
2.1 集合概述
A:我们学习的是⾯向对象编程语⾔,⽽⾯向对象编程语⾔对事物的描述都是通过对象来体现的。为了⽅便对多个对象进⾏操作,我们就必须对这多个对象进⾏存储,⽽要想对多个对象进⾏存储,
就不能是⼀个基本 的变量,⽽应该是⼀个容器类型的变量。
B:StringBuilder,数组。
StringBuilder的结果只能是⼀个字符串类型,不⼀定满⾜我们的需求。
所以,我们⽬前只能选择数组了,也就是我们前⾯学习过的对象数组。
但是,数组的长度是固定的, 如果有时候元素的个数不确定的,我们⽆法定义出数组的长度,这个时候,java就提供了集合类供我们使⽤。
2.2 ArrayList集合
2.2.1 ArrayList 添加新元素
2.2.1.1 案例代码⼆:
packagecom.gao_01;importjava.util.ArrayList;/** 为什么会出现集合类:
* 我们学习的是⾯向对象编程语⾔,⽽⾯向对象编程语⾔对事物的描述都是通过对象来体现的。
* 为了⽅便对多个对象进⾏操作,我们就必须对这多个对象进⾏存储,⽽要想对多个对象进⾏存储,
* 就不能是⼀个基本的变量,⽽应该是⼀个容器类型的变量。
* 到⽬前为⽌,我们学习过了哪些容器类型的数据呢?StringBuilder,数组。
* StringBuilder的结果只能是⼀个字符串类型,不⼀定满⾜我们的需求。
* 所以,我们⽬前只能选择数组了,也就是我们前⾯学习过的对象数组。
* 但是,数组的长度是固定的,适应不了变化的需求,那么,我们该如何选择呢?
* 这个时候,java就提供了集合类供我们使⽤。
*
* 集合类的特点:
* 长度可变。
*
* ArrayList:
* ⼤⼩可变数组的实现
*
* :是⼀种特殊的数据类型,泛型。
* 怎么⽤呢?
* 在出现E的地⽅我们使⽤引⽤数据类型替换即可
* 举例:ArrayList,ArrayList
*
* 构造⽅法:
* ArrayList()
*
* 添加元素:
* public boolean add(E e):添加元素
* public void add(int index,E element):在指定的索引处添加⼀个元素*/
public classArrayListDemo {public static voidmain(String[] args) {//创建集合对象
ArrayList array = new ArrayList();//add(E e):添加元素
array.add("hello");
array.add("world");
array.add("java");//add(int index,E element):在指定的索引处添加⼀个元素//array.add(1, "android"); System.out.println("array:"+array);
}
}
2.2.2 删改查⽅法
A:获取元素
public E get(int index):返回指定索引处的元素
B:集合长度
public int size():返回集合中的元素的个数
C:删除元素
public boolean remove(Object o):删除指定的元素,返回删除是否成功
public E remove(int index):删除指定索引处的元素,返回被删除的元素
D:修改元素
public E set(int index,E element):修改指定索引处的元素,返回被修改的元素
2.2.2.1 案例代码三:
packagecom.gao_01;importjava.util.ArrayList;/** 获取元素
* public E get(int index):返回指定索引处的元素
* 集合长度
* public int size():返回集合中的元素的个数
* 删除元素
* public boolean remove(Object o):删除指定的元素,返回删除是否成功
* public E remove(int index):删除指定索引处的元素,返回被删除的元素
* 修改元素
* public E set(int index,E element):修改指定索引处的元素,返回被修改的元素*/
public classArrayListDemo2 {public static voidmain(String[] args) {//创建集合对象
ArrayList array = new ArrayList();//添加元素
array.add("hello");
array.add("world");
array.add("java");//public E get(int index):返回指定索引处的元
素//System.out.println("get:"+(0));//System.out.println("get:"+(1));//System.out.println("get:"+(2));//publi int size():返回集合中的元素的个数//System.out.println("size:"+array.size());//public boolean remove(Object o):删除指定的元素,
返回删除是否成
功//System.out.println("remove:"+ve("world"));//true//System.out.println("remove:"+ve("world"));//false//publ E remove(int index):删除指定索引处的元素,返回被删除的元素//System.out.println("remove:"+ve(0));//public E
set(int index,E element):修改指定索引处的元素,返回被修改的元素
System.out.println("set:"+array.set(1, "android"));//输出
System.out.println("array:"+array);
}
}
2.2.3 ArrayList遍历
集合的遍历思想和数组的遍历思想相同
循环遍历容器,依次取出⾥⾯的元素即可
2.2.
3.1 案例代码四:
packagecom.gao_01;importjava.util.ArrayList;/** ArrayList集合的遍历
* 通过size()和get()配合实现的*/
public classArrayListDemo3 {public static voidmain(String[] args) {//创建集合对象
ArrayList array = new ArrayList();//添加元素
array.add("hello");
array.add("world");
array.add("java");//获取元素//原始做法
System.out.(0));
System.out.(1));
System.out.(2));
System.out.println("----------");for(int x=0; x<3; x++) {
System.out.(x));
}
System.out.println("----------");//如何知道集合中元素的个数呢?size()
for(int x=0; x
System.out.(x));
}
System.out.println("----------");//最标准的⽤法
for(int x=0; x
String (x);
System.out.println(s);
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论