黑马Java笔记第十四讲笔记—List集合

188 阅读5分钟

携手创作,共同成长!这是我参与「掘金日新计划 · 8 月更文挑战」的第29天, 点击查看活动详情

🎨 个人介绍

👉大家好,我是:旺仔不是程序员

👉认真分享技术,记录学习过程的点滴,如果我的分享能为你带来帮助,请支持我奥🍻

👉你的支持,是我每天更新的动力。

👉赞点:👍 留言:✍ 收藏:⭐

👉个人格言:想法一步一步的落实,才是你我前进最佳选择。

1.1 集合体系结构

1 )集合类的特点

  1. 提供一种存储空间可变的存储模型,存储的数据容量可以随时发生改变

2 )集合类的体系图

1.2 Collection集合概述和基本使用

1 )Collextion集合概述

  1. 是单列集合的顶层接口,他表示一组对象,这些对象也称为Collextion的元素
  2. JDK不是提供此接口的任何直接实现,他提供更具体的子接口(如Set和List)实现

2 )Collection集合的基本使用

public class CollectionDemo01 {
    public static void main(Sting[] args) {
        // 创建Collection集合对象
        Collection<String> c = new ArrayList<String>();
        
        // 添加元素:boolean add(E e)
        c.add("hello");
        c.add("world");
        c.add("java");
        
        //输出集合对象
        System.out.println(c);
    }
}

1.3 Collection集合的常用方法

方法名说明
boolean add(E e)添加元素
boolean remove(Object o)从集合中移除指定元素
void clear()清空集合中的所有元素
boolean contains (Object o)判断集合中是否存在指定元素
boolean isEmpty()判断集合是否为空
int size()集合长度,也就是集合中元素的个数

1.4 Collection集合遍历

1 )迭代器的介绍

  1. 迭代器,集合的专用遍历方式
  2. Iterator iterator() : 返回此集合中元素的迭代器,通过集合的iterator()方法得到
  3. 迭代器是通过集合的iterator()方法得到的,所以我们说它是依赖于集合而存在的

2 )Collection集合遍历

public class IteratorDemo {
    public static void main(String[] args) {
        //创建集合对象
        Collection<String> c = new ArrayList<>();
        
        //添加元素
        c.add("hello");
        c.add("world");
        c.add("java");
        c.add("jvavee");
        
        //Iterator<E> iterator(): 返回此集合中元素的迭代器,通过集合的iterator()方法得到
        Iterator<String> it = c.iterator();
        //使用while循环改进元素的判断和获取
        while(it.hasNext()) {
            String s = it.next();
            System.out.println(s);
        }
         
    }
}

1.5 集合的案例-Collection集合存储学生对象并遍历

1)案例需求

创建一个存储学生对象的集合,存储3个学生对象,使用程序实现控制台遍历该集合

2 )代码实现

  1. 学生类
public class Student {
​
    private String name;
    private int age;
​
    public Student() {
    }
​
    public Student(String name, int age) {
        this.name = name;
        this.age = age;
    }
​
    public String getName() {
        return name;
    }
​
    public void setName(String name) {
        this.name = name;
    }
​
    public int getAge() {
        return age;
    }
​
    public void setAge(int age) {
        this.age = age;
    }
}
  1. 测试类
public class CollectionDemo {
    publci static void main(String[] args) {
        // 创建Collection集合对象
        Collection<Student> c = new ArrayList<String> ();
        
        //创建学生对象
        Student s1 = new Student("林青霞",30);
        Student s1 = new Student("张曼玉",28);
        Student s1 = new Student("王祖贤",31);
        
        //把学生添加到集合
        c.add(s1);
        c.add(s2);
        c.add(s3);
        
        //遍历集合(迭代器方式)
        Iterator<Student> it = c.iterator();
        while(it.hasNext()) {
            Student s = it.next();
            System.out.println(s.getName() + "," + s.getAge());
        }
    }
}

2. List集合

2.1 List集合概述和特点

1 )List集合概述

  1. 有序集合(也称为序列),用户可以精确控制列表中每个元素的插入位置。用户可以通过整数索引访问元素,并搜索列表中的元素
  2. 与Set集合不同,列表通常允许重复元素

2 )List集合特点

  1. 有索引
  2. 可以存储重复元素
  3. 元素存取有序

2.2 List集合的特有方法

方法名描述
void add(int index ,E element)在此集合中指定位置插入指定元素
E remove (int index)删除指定索引处的元素,返回被删除的元素
E set(int index,E element)修改指定索引处的元素,返回被修改的元素
E get (int index)返回指定索引的元素

2.3 集合案例-List集合存储学生对象并遍历

1 )案例需求

  1. 创建一个存储学生对象的集合,存储3个学生对象,使用程序实现控制台遍历该集合

2 )代码实现

  1. 学生类
public class Student {
​
    private String name;
    private int age;
​
    public Student() {
    }
​
    public Student(String name, int age) {
        this.name = name;
        this.age = age;
    }
​
    public String getName() {
        return name;
    }
​
    public void setName(String name) {
        this.name = name;
    }
​
    public int getAge() {
        return age;
    }
​
    public void setAge(int age) {
        this.age = age;
    }
}
  1. 测试类
publci class ListDemo {
    public static void main(String[] args) {
        // 创建学生对象集合
        List<Student> list = new ArrayList<Student>();
        
        // 创建学生对象
        Student s1 = new Student("林青霞",30);
        Student s1 = new Student("张曼玉",28);
        Student s1 = new Student("王祖贤",31);
        
        //把学生添加到集合
        list.add(s1);
        list.add(s2);
        list.add(s3);
        
        //迭代器方式
        Iterator<Student> it = list.iterator();
        while(it.hasNext()) {
            Student s = it.next();
            System.out.println(s.getName() + "," + s.getAge())
        }
        
        System.out.println("-----------------")
            
            //for循环
        for(int i =0; i<list.size();i++) {
            Student s = new list.get(i);
            System.out.println(s.getName() + ";" + s.getAge());
        }
    }
}

2.4 并发修改异常

1 )出现的原因

  1. 迭代器遍历的过程中,通过集合对象修改了集合中的元素,造成了迭代器获取元素中判断预期修改值的实际修改值不一致,则会出现:ConcurrentModificationException

2 )解决方案

  1. 用for循环遍历,然后用集合对象做操作即可

2.5 列表迭代器

1 )ListIterator介绍

  1. 通过List集合的ListIterator()方法得到,所以说,它是list集合的特有迭代器
  2. 用于程序员沿着一个方向遍历的列表迭代器,在迭代期间修改列表,并获取列表中迭代器的当前位置

2 )示例代码

publci class ListIteratorDemo {
    public static void main(String[] args) {
        // 创建集合对象
        List<String> list = new ArrayList<Student>();
        
        // 添加元素
        list.add("hello");
        list.add("world");
        list.add("java");
        
        // 获取列表迭代器
        ListIterator<String> lit = list.listIterator();
        while(lit.hasNext()) {
            String s = lit.next();
            if(s.equlas("world")) {
                lit.add("javaee")
            }
        }
    }
}

添加之后遍历的结果

hello
world
javaee
java

2.6 增强for循环

1 )定义格式

for(元素数据类型 变量名 : 数组/集合对象) {
    循环体;
}

2 )实例代码

public class ForDemo {
    public static void main(String[] args) {
        int[] arr = {1,2,3,4,5};
        for(int i : arr) {
            System.out.println(i)
        }
        
        System.out.println("--------------");
        
        String[] strArray = {"hello","world","java"};
        for(String s : strArray) {
            System.out.println(s);
        }
        
        System.out.println("--------------");
        
        List<String> list = new ArrayList<>();
        list.add("hello");
        list.add("world");
        list.add("java");
        
        for(String s : list) {
            System.out.println(s)
        }
        
         System.out.println("--------------");
        
        //内部原理是一个Iterator迭代器
        for(String s : list) { 
            if(s.equals("world")) { 
                list.add("javaee"); //ConcurrentModificationException
        	} 
        }
    }
}

2.7 集合的案例****-List****集合存储学生对象三种方式遍历

1 )案例需求

  1. 创建一个存储学生对象的集合,存储3个学生对象,使用程序实现在控制台遍历该集合

2 )代码实现

  1. 学生类
public class Student {

    private String name;
    private int age;

    public Student() {
    }

    public Student(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
}
  1. 测试类
public class ListDemo {
    public static void main(String[] args) {
        // 创建List集合对象
        List<Student> list = new ArrayList<Student>();
         // 创建学生对象
        Student	s1 = new Student("林青霞",30);
        Student	s1 = new Student("张曼玉",28);
        Student	s1 = new Student("王祖贤",31);
        
        //把学生添加到集合
        list.add(s1);
        list.add(s2);
        list.add(s3);
        
        //迭代器:集合特有的遍历方式
        Iterator<Student> it = list.iterator(); 
        while (it.hasNext()) { 
            Student s = it.next(); 	
            System.out.println(s.getName()+","+s.getAge());
        }
        
        System.out.println("--------");
        
        //普通for:带有索引的遍历方式
        for(int i =0;i<list.size();i++) {
            Student s = list.get(i); 
            System.out.println(s.getName()+","+s.getAge());
        }
        
        System.out.println("--------");
        
        //增强for:最方便的遍历方式
        for(Student s : list) {
            System.out.println(s.getName()+","+s.getAge());
        }
    }
}

3. 数据结构

3.1 数据结构之栈和队列

1)栈结构

先进后出

2 )队列结构

先进先出

3.2 数据结构之数组和链表

1 )数组结构

查询快,增删慢

2 )队列结构

查询慢,增删快

4. List集合的实现类

4.1 List集合子类的特点

1 )ArrayList集合

  1. 底层是数组结构实现,查询快,增删慢

2 )LinkedList集合

底层是链表结构实现,查询慢,增删快

4.2 LinkedList集合的特有功能

1 )特有方法

方法名说明
public void addFirst(E e)在该列表头插入指定的元素
public void addLast(E e)将指定的元素追加到此列表的末尾
public E getFirst()返回此列表中第一个元素
public E getLast()返回此列表中最后一个元素
public E removeFirst()从此列表中删除并返回一个元素
public E removeLast()从此列表中删除并返回最后一个元素

🎈看完了不妨给我点个赞吧,👉你的支持,是我每天更新的动力...