一、对象数组
a) 对象数组概述
A:基本类型的数组:存储的元素为基本类型
int[] arr={1,2,3,4}
int[] arr=new int(5);
int[] arr=new int(5){1,2,3,4,5};
B:对象数组:存储的元素为引用类型
Student[]stus=new Student[3];
集合之ArrayList
集合类的特点:
*
长度可变。
*ArrayList<E>:
*
大小可变数组的实现