概念:
ArrayList是一种有序可变的容器,ArrayList构造会自动创建长度为10的容器,超过10会自动增加
集合和数组的区别 :
共同点:都是存储数据的容器
不同点:数组的容量是固定的,集合的容量是可变的
集合底层也是数组,数组的效率会更好,但是功能有限,如果要存储的数据经常发生变化就使用集合
ArrayList的构造方法和成员方法:
public ArrayList() | 创建一个空的集合对象 |
---|---|
public boolean add(E e) | 将指定的元素追加到此集合的末尾 |
public void add(int index,E element) | 在此集合中的指定位置插入指定的元素 |
public boolean remove(Object o) | 删除指定的元素,返回删除是否成功 |
public E remove(int index) | 删除指定索引处的元素,返回被删除的元素 |
public E set(int index,E element) | 修改指定索引处的元素,返回被修改的元素 |
public E get(int index) | 返回指定索引处的元素 |
public int size() | 返回集合中的元素的个数 |
public static void main(String[] args) {//创建集合ArrayList<String> array = new ArrayList<String>();//public boolean add(E e) 将指定的元素追加到此集合的末尾array.add("hello");array.add("hello");array.add("world");array.add("java");System.out.println("第一次添加:" + array);// public void add(int index,E element) 在此集合中的指定位置插入指定的元素array.add(1, "我来个插队");System.out.println(array);// public boolean remove(Object o) 删除指定的元素,返回删除是否成功boolean r = array.remove("hello");System.out.println("是否删除成功" + r);System.out.println("删除后:" + array);// public E remove(int index) 删除指定索引处的元素,返回被删除的元素array.remove(2);System.out.println("删除后:" + array);// public E set(int index,E element) 修改指定索引处的元素,返回被修改的元素array.set(1,"helloPlus");System.out.println("修改后:" + array);// public E get(int index) 返回指定索引处的元素System.out.println(array.get(1));// public int size() 返回集合中的元素的个数System.out.println(array.size());}
键盘录入学生信息到集合:
public static void main(String[] args) {//创建集合对象ArrayList<Student> array = new ArrayList<Student>();//为了提高代码的复用性,我们用方法来改进程序addStudent(array);//遍历集合,采用通用遍历格式实现for (int i = 0; i < array.size(); i++) {Student s = array.get(i);System.out.println(s.getName() + "," + s.getAge());}}public static void addStudent(ArrayList<Student> array) {//键盘录入学生对象所需要的数据Scanner sc = new Scanner(System.in);System.out.println("请输入学生姓名:");String name = sc.nextLine();System.out.println("请输入学生年龄:");int age = sc.nextInt();//创建学生对象,把键盘录入的数据赋值给学生对象的成员变量Student student = new Student(name, age);//往集合中添加学生对象array.add(s);}
删除注意:
public static void main(String[] args) {// 创建集合ArrayList<String> list = new ArrayList<>();list.add("abc");list.add("123");list.add("123");list.add("45126");list.add("654");for (int i = 0; i < list.size(); i++) {String s = list.get(i);// 尽量用常量调equals,不要用变量if ("123".equals(s)) {list.remove(i);/**不做--的话就会有遗漏,实现的原理是:删除第一个指定元素以后,往后面判断的时候,所有的元素的素索引都会往前移动,当指针走到索引1,这时候索引1是第一个123,把它删掉了,然后从索引2整体向前移动,现在的索引1是第二个123,这时候指针又开始了++。就刚好错过了第二个123。如果加上--,在删除以后就会回退一个索引,然后循环又++,就不会错过了*/i--;}}System.out.println(list);}
集合筛选:
public static void main(String[] args) {ArrayList<Student> list = new ArrayList<>();Student stu1 = new Student("韩信", 2);Student stu2 = new Student("李白", 23);Student stu3 = new Student("露娜", 24);list.add(stu1);list.add(stu2);list.add(stu3);ArrayList<Student> newList = getList(list);for (int i = 0; i < newList.size(); i++) {Student student = newList.get(i);System.out.println(student.getName() + ":" + student.getAge());}}private static ArrayList<Student> getList(ArrayList<Student> list) {// 创建新集合ArrayList<Student> newlist = new ArrayList<>();// 遍历集合,获取每一个学生对象for (int i = 0; i < list.size(); i++) {Student stu = list.get(i);// 调用getage判断年龄是否小于18int age = stu.getAge();if (age < 18) {// 把年龄小于18的学生存到新集合newlist.add(stu);}}return newlist;}