【java后端】容器集合

【java后端】容器集合,第1张

什么是集合? 提供一种存储空间可变的存储模型,存储的数据容量可以随时发生改变。 集合的继承体系:

而map没有继承collection接口:

map
特点特点:无序、以键值对的形式添加元素,键不能重复,值可以重复,如果键相同,值会覆盖
它没有继承Collection接口
实现类HashMap、HashTable、ConcurrentHashMap、LinkedHashMap等
  
遍历方法keySet和getKey
继承collection(接口)实现的集合类:

注:

  • Collection集合概述:

    collection接口是单例集合的顶层接口,它表示一组对象,这些对象也称为Collection的元素JDK 不提供此接口的任何直接实现,它提供更具体的子接口(如Set和List)实现.
  • collection的方法:
  • boolean add(E e)添加元素
    boolean remove(Object o)从集合中移除指定的元素
    void clear()清空集合中的元素
    boolean contains(Object o)判断集合中是否存在指定的元素
    boolean isEmpty()判断集合是否为空
    int size()集合的长度,也就是集合中元素的个数
    Collection集合的遍历【应用】
  • 迭代器的介绍

    • 迭代器,集合的专用遍历方式

    • Iterator iterator():返回此集合中元素的迭代器,通过集合的iterator()方法得到

    • 迭代器是通过集合的iterator()方法得到的,所以我们说它是依赖于集合而存在的

  • Collection集合的遍历:

List:
  • List集合概述:有序集合(也称为序列),用户可以精确控制列表中每个元素的插入位置。用户可以通过整数索引访问元素,并搜索列表中的元素,与Set集合不同,列表通常允许重复的元素
  • List集合特点:有索引可以存储重复元素,元素存取有序

  • //colletion的使用
    public class CollectionDemo01 {
        public static void main(String[] args) {
            //创建Collection集合的对象
            Collection c = new ArrayList();
    
            //添加元素:boolean add(E e)
            c.add("hello");
            c.add("world");
            c.add("java");
    
            //输出集合对象
            System.out.println(c);
        }
    }
    集合使用步骤图解:

实际案例:

  • 案例需求

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

  • //定义学生类
    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;
        }
    }
    //定义测试类
    public class CollectionDemo {
        public static void main(String[] args) {
            //创建Collection集合对象
            Collection c = new ArrayList();
    
            //创建学生对象
            Student s1 = new Student("林青霞", 30);
            Student s2 = new Student("张曼玉", 35);
            Student s3 = new Student("王祖贤", 33);
    
            //把学生添加到集合
            c.add(s1);
            c.add(s2);
            c.add(s3);
    
            //遍历集合(迭代器方式)
            Iterator it = c.iterator();
            while (it.hasNext()) {
                Student s = it.next();
                System.out.println(s.getName() + "," + s.getAge());
            }
        }
    }
    List的方法:
  • 方法名描述
    void add(int index,E element)在此集合中的指定位置插入指定的元素
    E remove(int index)删除指定索引处的元素,返回被删除的元素
    E set(int index,E element)修改指定索引处的元素,返回被修改的元素
    E get(int index)返回指定索引处的元素
 修改并发异常:
  • 出现的原因:迭代器遍历的过程中,通过集合对象修改了集合中的元素,造成了迭代器获取元素中判断预期修改值和实际修改值不一致,则会出现:ConcurrentModificationException

  • 解决的方案

    用for循环遍历,然后用集合对象做对应的 *** 作即可:

  • 代码如下:

  • //修改并发异常
    
    public class ListDemo {
        public static void main(String[] args) {
            //创建集合对象
            List list = new ArrayList();
    
            //添加元素
            list.add("hello");
            list.add("world");
            list.add("java");
    
            //遍历集合,得到每一个元素,看有没有"world"这个元素,如果有,我就添加一个"javaee"元素,请写代码实现
    //        Iterator it = list.iterator();
    //        while (it.hasNext()) {
    //            String s = it.next();
    //            if(s.equals("world")) {
    //                list.add("javaee");
    //            }
    //        }
    
            for(int i=0; i

  • ListIterator介绍:通过List集合的listIterator()方法得到,所以说它是List集合特有的迭代器;

    • 用于允许程序员沿任一方向遍历的列表迭代器,在迭代期间修改列表,并获取列表中迭代器的当前位置

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

      增强for循环:内部原理是一个Iterator迭代器

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

    • 
      //增强for循环
      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 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
                  }
              }
              */
          }
      }

List集合的实现类 List集合子类的特点:
  • 案例需求:创建一个存储学生对象的集合,存储3个学生对象,使用程序实现在控制台遍历该集合:

  • 代码如下:关于学生类的定义这里就不写了,只写测试类:

  • public class ListDemo {
        public static void main(String[] args) {
            //创建List集合对象
            List list = new ArrayList();
    
            //创建学生对象
            Student s1 = new Student("林青霞", 30);
            Student s2 = new Student("张曼玉", 35);
            Student s3 = new Student("王祖贤", 33);
    
            //把学生添加到集合
            list.add(s1);
            list.add(s2);
            list.add(s3);
    
            //迭代器:集合特有的遍历方式
            Iterator 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
    数据结构
  • 栈结构:先进后出

  • 队列结构:先进先出

  • 数组结构:查询快、增删慢

  • 队列结构:查询慢、增删快

  • ArrayList集合:底层是数组结构实现,查询快、增删慢

  • LinkedList集合:底层是链表结构实现,查询慢、增删快

(一)ArrayList:

Arraylist采用了数组底层结构,初始容量为10的数组添加第一个元素后扩容为1.5倍,此集合遍历和向尾部增删效率高。但随机增删效率低。

 //创建ArrayList集合的对象
        ArrayList c = new ArrayList();
(二)LinkList:

LinkList是双向链表的数据结构,类似于自行车链的结构;

LinkList的方法:

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

1.结构不同:ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。

2.访问方式不同:对于随机访问get和set,ArrayList优于LinkedList,因为ArrayList可以随机定位,而LinkedList要移动指针一步一步的移动到节点处。(

3.增删 *** 作不同:对于新增和删除 *** 作add和remove,LinedList比较占优势,只需要对指针进行修改即可,而ArrayList要移动数据来填补被删除的对象的空间

如下表所示:

  –add() *** 作  delete() *** 作   insert *** 作    index取值 *** 作  iterator取值 *** 作
ArrayList/Vector/Stack     好     差     差         极优     极优
LinkedList     好     好     好         差     极优
.Set集合 Set集合概述和特点 Set集合的特点:

①元素存取无序

②没有索引、只能通过迭代器或增强for循环遍历

③不能存储重复元素

基本使用:

//set的基本使用:

public class SetDemo {
    public static void main(String[] args) {
        //创建集合对象
        Set set = new HashSet();

        //添加元素
        set.add("hello");
        set.add("world");
        set.add("java");
        //不包含重复元素的集合
        set.add("world");

        //遍历
        for(String s : set) {
            System.out.println(s);
        }
    }
}
哈希值:
  • 哈希值是JDK根据对象的地址或者字符串或者数字算出来的int类型的数值

  • 如何获取哈希值

    Object类中的public int hashCode():返回对象的哈希码值

  • 哈希值的特点

    • 同一个对象多次调用hashCode()方法返回的哈希值是相同的

    • 默认情况下,不同对象的哈希值是不同的。而重写hashCode()方法,可以实现让不同对象的哈希值相同

实例:定义一个学生类,在测试类中使用hashcode获得哈希值:

//定义一个学生类

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;
    }
//hashcode方法:
    @Override
    public int hashCode() {
        return 0;
    }
}
//测试类调用hashcode方法:
public class HashDemo {
    public static void main(String[] args) {
        //创建学生对象
        Student s1 = new Student("林青霞",30);

        //同一个对象多次调用hashCode()方法返回的哈希值是相同的
        System.out.println(s1.hashCode()); //1060830840
        System.out.println(s1.hashCode()); //1060830840
        System.out.println("--------");

        Student s2 = new Student("林青霞",30);

        //默认情况下,不同对象的哈希值是不相同的
        //通过方法重写,可以实现不同对象的哈希值是相同的
        System.out.println(s2.hashCode()); //2137211482
        System.out.println("--------");

        System.out.println("hello".hashCode()); //99162322
        System.out.println("world".hashCode()); //113318802
        System.out.println("java".hashCode()); //3254818

        System.out.println("world".hashCode()); //113318802
        System.out.println("--------");

        System.out.println("重地".hashCode()); //1179395
        System.out.println("通话".hashCode()); //1179395
    }
}
HashSet:
  • HashSet集合的特点
    • 底层数据结构是哈希表

    • 对集合的迭代顺序不作任何保证,也就是说不保证存储和取出的元素顺序一致

    • 没有带索引的方法,所以不能使用普通for循环遍历,使用增强for循环

    • 由于是Set集合,所以是不包含重复元素的集合

HashSet的使用:

//HashSet的使用:

public class HashSetDemo01 {
    public static void main(String[] args) {
        //创建集合对象
        HashSet hs = new HashSet();

        //添加元素
        hs.add("hello");
        hs.add("world");
        hs.add("java");

        hs.add("world");

        //遍历
        for(String s : hs) {
            System.out.println(s);
        }
    }
}
HashSet集合保证元素唯一性源码分析
  • HashSet集合保证元素唯一性的原理

    ①.根据对象的哈希值计算存储位置

    如果当前位置没有元素则直接存入

    如果当前位置有元素存在,则进入第二步

  • ②.当前元素的元素和已经存在的元素比较哈希值

    如果哈希值不同,则将当前元素进行存储

    如果哈希值相同,则进入第三步

    ③.通过equals()方法比较两个元素的内容

    如果内容不相同,则将当前元素进行存储

    如果内容相同,则不存储当前元素

常见数据结构之哈希表:

HashSet集合存储学生对象并遍历【应用】
  • 案例需求

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

    • 要求:学生对象的成员变量值相同,我们就认为是同一个对象

代码如下:

//学生类

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;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        Student student = (Student) o;

        if (age != student.age) return false;
        return name != null ? name.equals(student.name) : student.name == null;
    }

    @Override
    public int hashCode() {
        int result = name != null ? name.hashCode() : 0;
        result = 31 * result + age;
        return result;
    }
}


//测试类
public class HashSetDemo02 {
    public static void main(String[] args) {
        //创建HashSet集合对象
        HashSet hs = new HashSet();

        //创建学生对象
        Student s1 = new Student("林青霞", 30);
        Student s2 = new Student("张曼玉", 35);
        Student s3 = new Student("王祖贤", 33);

        Student s4 = new Student("王祖贤", 33);

        //把学生添加到集合
        hs.add(s1);
        hs.add(s2);
        hs.add(s3);
        hs.add(s4);

        //遍历集合(增强for)
        for (Student s : hs) {
            System.out.println(s.getName() + "," + s.getAge());
        }
    }
}
LinkedHashSet集合概述和特点【应用】
  • LinkedHashSet集合特点

    • 哈希表和链表实现的Set接口,具有可预测的迭代次序

    • 由链表保证元素有序,也就是说元素的存储和取出顺序是一致

    • 由哈希表保证元素唯一,也就是说没有重复的

    • LinkedHashSet集合基本使用:

public class LinkedHashSetDemo {
    public static void main(String[] args) {
        //创建集合对象
        LinkedHashSet linkedHashSet = new LinkedHashSet();

        //添加元素
        linkedHashSet.add("hello");
        linkedHashSet.add("world");
        linkedHashSet.add("java");

        linkedHashSet.add("world");

        //遍历集合
        for(String s : linkedHashSet) {
            System.out.println(s);
        }
    }
}

TreeSet集合概述和特点【应用】
  • TreeSet集合概述

    • 元素有序,可以按照一定的规则进行排序,具体排序方式取决于构造方法

      • TreeSet():根据其元素的自然排序进行排序

      • TreeSet(Comparator comparator) :根据指定的比较器进行排序

    • 没有带索引的方法,所以不能使用普通for循环遍历,使用增强for循环;

    • 由于是Set集合,所以不包含重复元素的集合

  • TreeSet集合基本使用

public class TreeSetDemo01 {
    public static void main(String[] args) {
        //创建集合对象
        TreeSet ts = new TreeSet();

        //添加元素
        ts.add(10);
        ts.add(40);
        ts.add(30);
        ts.add(50);
        ts.add(20);

        ts.add(30);

        //遍历集合
        for(Integer i : ts) {
            System.out.println(i);
        }
    }
}
自然排序Comparable的使用:
  • 案例需求

    • 存储学生对象并遍历,创建TreeSet集合使用无参构造方法

    • 要求:按照年龄从小到大排序,年龄相同时,按照姓名的字母顺序排序

  • 实现步骤

    • 用TreeSet集合存储自定义对象,无参构造方法使用的是自然排序对元素进行排序的

    • 自然排序,就是让元素所属的类实现Comparable接口,重写compareTo(T o)方法

    • 重写方法时,一定要注意排序规则必须按照要求的主要条件和次要条件来写

//在学生类方法重写排序方法
 @Override
    public int compareTo(Student s) {
//        return 0;
//        return 1;
//        return -1;
        //按照年龄从小到大排序
       int num = this.age - s.age;
//        int num = s.age - this.age;
        //年龄相同时,按照姓名的字母顺序排序
       int num2 = num==0?this.name.compareTo(s.name):num;
        return num2;
    }
}

//测试类
public class TreeSetDemo02 {
    public static void main(String[] args) {
        //创建集合对象
        TreeSet ts = new TreeSet();

        //创建学生对象
        Student s1 = new Student("xishi", 29);
        Student s2 = new Student("wangzhaojun", 28);
        Student s3 = new Student("diaochan", 30);
        Student s4 = new Student("yangyuhuan", 33);

        Student s5 = new Student("linqingxia",33);
        Student s6 = new Student("linqingxia",33);

        //把学生添加到集合
        ts.add(s1);
        ts.add(s2);
        ts.add(s3);
        ts.add(s4);
        ts.add(s5);
        ts.add(s6);

        //遍历集合
        for (Student s : ts) {
            System.out.println(s.getName() + "," + s.getAge());
        }
    }
}
比较器排序Comparator的使用:

写完学生类之后在测试类这么使用:

public class TreeSetDemo {
    public static void main(String[] args) {
        //创建集合对象
        TreeSet ts = new TreeSet(new Comparator() {
            @Override
            public int compare(Student s1, Student s2) {
                //this.age - s.age
                //s1,s2
                int num = s1.getAge() - s2.getAge();
                int num2 = num == 0 ? s1.getName().compareTo(s2.getName()) : num;
                return num2;
            }
        });

        //创建学生对象
        Student s1 = new Student("xishi", 29);
        Student s2 = new Student("wangzhaojun", 28);
        Student s3 = new Student("diaochan", 30);
        Student s4 = new Student("yangyuhuan", 33);

        Student s5 = new Student("linqingxia",33);
        Student s6 = new Student("linqingxia",33);

        //把学生添加到集合
        ts.add(s1);
        ts.add(s2);
        ts.add(s3);
        ts.add(s4);
        ts.add(s5);
        ts.add(s6);

        //遍历集合
        for (Student s : ts) {
            System.out.println(s.getName() + "," + s.getAge());
        }
    }
}

 TreeSet ts = new TreeSet(new Comparator() {方法重写}

泛型:
  • 泛型是JDK5中引入的特性,它提供了编译时类型安全检测机制,该机制允许在编译时检测到非法的类型:

    它的本质是参数化类型,也就是说所 *** 作的数据类型被指定为一个参数。一提到参数,最熟悉的就是定义方法时有形参,然后调用此方法时传递实参。那么参数化类型怎么理解呢?顾名思义,就是将类型由原来的具体的类型参数化,然后在使用/调用时传入具体的类型。这种参数类型可以用在类、方法和接口中,分别被称为泛型类、泛型方法、泛型接口

  • 泛型定义格式

    • <类型>:指定一种类型的格式。这里的类型可以看成是形参

    • <类型1,类型2…>:指定多种类型的格式,多种类型之间用逗号隔开。这里的类型可以看成是形参

    • 将来具体调用时候给定的类型可以看成是实参,并且实参的类型只能是引用数据类型

  • 泛型的好处

    • 把运行时期的问题提前到了编译期间

    • 避免了强制类型转换

定义格式: 修饰符 class 类名<类型> {  }

例如:

//泛型类
public class Generic {
    private T t;

    public T getT() {
        return t;
    }

    public void setT(T t) {
        this.t = t;
    }
}
//测试类
public class GenericDemo {
    public static void main(String[] args) {
        Generic g1 = new Generic();
        g1.setT("林青霞");
        System.out.println(g1.getT());

        Generic g2 = new Generic();
        g2.setT(30);
        System.out.println(g2.getT());

        Generic g3 = new Generic();
        g3.setT(true);
        System.out.println(g3.getT());
    }
}
泛型的应用:
public class Generic {
    public  void show(T t) {
        System.out.println(t);
    }
}
public class GenericDemo {
    public static void main(String[] args) {
		Generic g = new Generic();
        g.show("林青霞");
        g.show(30);
        g.show(true);
        g.show(12.34);
    }
}

泛型接口:

定义格式:修饰符 interface 接口名<类型> {  }

//- - 泛型接口

  //  ```java
    public interface Generic {
        void show(T t);
    }
   

  //- 泛型接口实现类


    public class GenericImpl implements Generic {
        @Override
        public void show(T t) {
            System.out.println(t);
        }
    }
  

  //- 测试类
//
   // ```java
    public class GenericDemo {
        public static void main(String[] args) {
            Generic g1 = new GenericImpl();
            g1.show("林青霞");
    
            Generic g2 = new GenericImpl();
            g2.show(30);
        }
    }
  

类型通配符【应用】
  • 类型通配符的作用

    为了表示各种泛型List的父类,可以使用类型通配符

  • 类型通配符的分类

    • 类型通配符:

      • List:表示元素类型未知的List,它的元素可以匹配任何的类型

      • 这种带通配符的List仅表示它是各种泛型List的父类,并不能把元素添加到其中

    • 类型通配符上限:

      • List:它表示的类型是Number或者其子类型

    • 类型通配符下限:

      • List:它表示的类型是Number或者其父类型

//类型通配符的使用
public class GenericDemo {
    public static void main(String[] args) {
        //类型通配符:
        List list1 = new ArrayList();
        List list2 = new ArrayList();
        List list3 = new ArrayList();
        System.out.println("--------");

        //类型通配符上限:
//        List list4 = new ArrayList();
        List list5 = new ArrayList();
        List list6 = new ArrayList();
        System.out.println("--------");

        //类型通配符下限:
        List list7 = new ArrayList();
        List list8 = new ArrayList();
//        List list9 = new ArrayList();

    }
} 

Map集合: 1.1Map集合概述和特点【理解】
  • Map集合概述

    interface Map  K:键的类型;V:值的类型
  • Map集合的特点

    • 键值对映射关系

    • 一个键对应一个值

    • 键不能重复,值可以重复

    • 元素存取无序

  • Map集合的基本使用:

  • public class MapDemo01 {
        public static void main(String[] args) {
            //创建集合对象
            Map map = new HashMap();
    
            //V put(K key, V value) 将指定的值与该映射中的指定键相关联
            map.put("itheima001","林青霞");
            map.put("itheima002","张曼玉");
            map.put("itheima003","王祖贤");
            map.put("itheima003","柳岩");
    
            //输出集合对象
            System.out.println(map);
        }
    }
    Map集合的基本功能:
  • 方法介绍

    方法名说明
    V put(K key,V value)添加元素
    V remove(Object key)根据键删除键值对元素
    void clear()移除所有的键值对元素
    boolean containsKey(Object key)判断集合是否包含指定的键
    boolean containsValue(Object value)判断集合是否包含指定的值
    boolean isEmpty()判断集合是否为空
    int size()集合的长度,也就是集合中键值对的个数

public class MapDemo02 {
    public static void main(String[] args) {
        //创建集合对象
        Map map = new HashMap();

        //V put(K key,V value):添加元素
        map.put("张无忌","赵敏");
        map.put("郭靖","黄蓉");
        map.put("杨过","小龙女");

        //V remove(Object key):根据键删除键值对元素
//        System.out.println(map.remove("郭靖"));
//        System.out.println(map.remove("郭襄"));

        //void clear():移除所有的键值对元素
//        map.clear();

        //boolean containsKey(Object key):判断集合是否包含指定的键
//        System.out.println(map.containsKey("郭靖"));
//        System.out.println(map.containsKey("郭襄"));

        //boolean isEmpty():判断集合是否为空
//        System.out.println(map.isEmpty());

        //int size():集合的长度,也就是集合中键值对的个数
        System.out.println(map.size());


        //输出集合对象
        System.out.println(map);
    }
}
Map集合的获取功能
  • 方法介绍

    方法名说明
    V get(Object key)根据键获取值
    Set keySet()获取所有键的集合
    Collection values()获取所有值的集合
    Set> entrySet()获取所有键值对对象的集合
public class MapDemo03 {
    public static void main(String[] args) {
        //创建集合对象
        Map map = new HashMap();

        //添加元素
        map.put("张无忌", "赵敏");
        map.put("郭靖", "黄蓉");
        map.put("杨过", "小龙女");

        //V get(Object key):根据键获取值
//        System.out.println(map.get("张无忌"));
//        System.out.println(map.get("张三丰"));

        //Set keySet():获取所有键的集合
//        Set keySet = map.keySet();
//        for(String key : keySet) {
//            System.out.println(key);
//        }

        //Collection values():获取所有值的集合
        Collection values = map.values();
        for(String value : values) {
            System.out.println(value);
        }
    }
}
Map集合的遍历(方式1)
  • 遍历思路

    • 我们刚才存储的元素都是成对出现的,所以我们把Map看成是一个夫妻对的集合

      • 把所有的丈夫给集中起来

      • 遍历丈夫的集合,获取到每一个丈夫

      • 根据丈夫去找对应的妻子

  • 步骤分析

    • 获取所有键的集合。用keySet()方法实现

    • 遍历键的集合,获取到每一个键。用增强for实现

    • 根据键去找值。用get(Object key)方法实现

    • public class MapDemo01 {
          public static void main(String[] args) {
              //创建集合对象
              Map map = new HashMap();
      
              //添加元素
              map.put("张无忌", "赵敏");
              map.put("郭靖", "黄蓉");
              map.put("杨过", "小龙女");
      
              //获取所有键的集合。用keySet()方法实现
              Set keySet = map.keySet();
              //遍历键的集合,获取到每一个键。用增强for实现
              for (String key : keySet) {
                  //根据键去找值。用get(Object key)方法实现
                  String value = map.get(key);
                  System.out.println(key + "," + value);
              }
          }
      }
      Map集合的遍历(方式2):
    • 遍历思路

      • 我们刚才存储的元素都是成对出现的,所以我们把Map看成是一个夫妻对的集合

        • 获取所有结婚证的集合

        • 遍历结婚证的集合,得到每一个结婚证

        • 根据结婚证获取丈夫和妻子

    • 步骤分析

      • 获取所有键值对对象的集合

        • Set> entrySet():获取所有键值对对象的集合

      • 遍历键值对对象的集合,得到每一个键值对对象

        • 用增强for实现,得到每一个Map.Entry

      • 根据键值对对象获取键和值

        • 用getKey()得到键

        • 用getValue()得到值

        • public class MapDemo02 {
              public static void main(String[] args) {
                  //创建集合对象
                  Map map = new HashMap();
          
                  //添加元素
                  map.put("张无忌", "赵敏");
                  map.put("郭靖", "黄蓉");
                  map.put("杨过", "小龙女");
          
                  //获取所有键值对对象的集合
                  Set> entrySet = map.entrySet();
                  //遍历键值对对象的集合,得到每一个键值对对象
                  for (Map.Entry me : entrySet) {
                      //根据键值对对象获取键和值
                      String key = me.getKey();
                      String value = me.getValue();
                      System.out.println(key + "," + value);
                  }
              }
          }
          Map集合的案例:

          HashMap集合练习之键是String值是Student

        • 案例需求

          创建一个HashMap集合,键是学号(String),值是学生对象(Student)。存储三个键值对元素,并遍历

        • 代码实现

        • /*
              需求:
                  创建一个HashMap集合,键是学号(String),值是学生对象(Student)。存储三个键值对元素,并遍历
          
              思路:
                  1:定义学生类
                  2:创建HashMap集合对象
                  3:创建学生对象
                  4:把学生添加到集合
                  5:遍历集合
                      方式1:键找值
                      方式2:键值对对象找键和值
           */
          public class HashMapDemo {
              public static void main(String[] args) {
                  //创建HashMap集合对象
                  HashMap hm = new HashMap();
          
                  //创建学生对象
                  Student s1 = new Student("林青霞", 30);
                  Student s2 = new Student("张曼玉", 35);
                  Student s3 = new Student("王祖贤", 33);
          
                  //把学生添加到集合
                  hm.put("itheima001", s1);
                  hm.put("itheima002", s2);
                  hm.put("itheima003", s3);
          
                  //方式1:键找值
                  Set keySet = hm.keySet();
                  for (String key : keySet) {
                      Student value = hm.get(key);
                      System.out.println(key + "," + value.getName() + "," + value.getAge());
                  }
                  System.out.println("--------");
          
                  //方式2:键值对对象找键和值
                  Set> entrySet = hm.entrySet();
                  for (Map.Entry me : entrySet) {
                      String key = me.getKey();
                      Student value = me.getValue();
                      System.out.println(key + "," + value.getName() + "," + value.getAge());
                  }
              }
          }
          HashMap集合练习之键是Student值是String
        • 案例需求

          • 创建一个HashMap集合,键是学生对象(Student),值是居住地 (String)。存储多个元素,并遍历。

          • 要求保证键的唯一性:如果学生对象的成员变量值相同,我们就认为是同一个对象

        • 代码实现

        • 
          //学生类
          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;
              }
          
              @Override
              public boolean equals(Object o) {
                  if (this == o) return true;
                  if (o == null || getClass() != o.getClass()) return false;
          
                  Student student = (Student) o;
          
                  if (age != student.age) return false;
                  return name != null ? name.equals(student.name) : student.name == null;
              }
          
              @Override
              public int hashCode() {
                  int result = name != null ? name.hashCode() : 0;
                  result = 31 * result + age;
                  return result;
              }
          }
          //测试类
          public class HashMapDemo {
              public static void main(String[] args) {
                  //创建HashMap集合对象
                  HashMap hm = new HashMap();
          
                  //创建学生对象
                  Student s1 = new Student("林青霞", 30);
                  Student s2 = new Student("张曼玉", 35);
                  Student s3 = new Student("王祖贤", 33);
                  Student s4 = new Student("王祖贤", 33);
          
                  //把学生添加到集合
                  hm.put(s1, "西安");
                  hm.put(s2, "武汉");
                  hm.put(s3, "郑州");
                  hm.put(s4, "北京");
          
                  //遍历集合
                  Set keySet = hm.keySet();
                  for (Student key : keySet) {
                      String value = hm.get(key);
                      System.out.println(key.getName() + "," + key.getAge() + "," + value);
                  }
              }
          }

集合嵌套之ArrayList嵌套HashMap

  • 案例需求

    • 创建一个ArrayList集合,存储三个元素,每一个元素都是HashMap

    • 每一个HashMap的键和值都是String,并遍历。

    • 定义格式:  ArrayList> array = new ArrayList>();

    • public class ArrayListIncludeHashMapDemo {
          public static void main(String[] args) {
              //创建ArrayList集合
              ArrayList> array = new ArrayList>();
      
              //创建HashMap集合,并添加键值对元素
              HashMap hm1 = new HashMap();
              hm1.put("孙策", "大乔");
              hm1.put("周瑜", "小乔");
              //把HashMap作为元素添加到ArrayList集合
              array.add(hm1);
      
              HashMap hm2 = new HashMap();
              hm2.put("郭靖", "黄蓉");
              hm2.put("杨过", "小龙女");
              //把HashMap作为元素添加到ArrayList集合
              array.add(hm2);
      
              HashMap hm3 = new HashMap();
              hm3.put("令狐冲", "任盈盈");
              hm3.put("林平之", "岳灵珊");
              //把HashMap作为元素添加到ArrayList集合
              array.add(hm3);
      
              //遍历ArrayList集合
              for (HashMap hm : array) {
                  Set keySet = hm.keySet();
                  for (String key : keySet) {
                      String value = hm.get(key);
                      System.out.println(key + "," + value);
                  }
              }
          }
      }
      Collections集合工具类: Collections概述和使用
    • Collections类的作用

      是针对集合 *** 作的工具类

    • Collections类常用方法

      方法名说明
      public static void sort(List list)将指定的列表按升序排序
      public static void reverse(List list)反转指定列表中元素的顺序
      public static void shuffle(List list)使用默认的随机源随机排列指定的列表
    • 示例代码

    • public class CollectionsDemo01 {
          public static void main(String[] args) {
              //创建集合对象
              List list = new ArrayList();
      
              //添加元素
              list.add(30);
              list.add(20);
              list.add(50);
              list.add(10);
              list.add(40);
      
              //public static > void sort(List list):将指定的列表按升序排序
      //        Collections.sort(list);
      
              //public static void reverse(List list):反转指定列表中元素的顺序
      //        Collections.reverse(list);
      
              //public static void shuffle(List list):使用默认的随机源随机排列指定的列表
              Collections.shuffle(list);
      
              System.out.println(list);
          }
      }
      使用collection工具实例:
    •  //使用Collections对ArrayList集合排序
              //sort(List list, Comparator c)
              Collections.sort(array, new Comparator() {
                  @Override
                  public int compare(Student s1, Student s2) {
                      //按照年龄从小到大排序,年龄相同时,按照姓名的字母顺序排序
                      int num = s1.getAge() - s2.getAge();
                      int num2 = num == 0 ? s1.getName().compareTo(s2.getName()) : num;
                      return num2;
                  }
              });
      

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/737860.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-28
下一篇 2022-04-28

发表评论

登录后才能评论

评论列表(0条)