Java Collection知识点回顾

List

  1. List 是接口ArrayListLinkedList实现类
  2. List 特点
    • 可以利用add()添加null
  3. List 创建
    • List list = List.of(1, 2, 3);,可以利用of()创建,但是不可以传入null值,且of 方法创建的是不可变集合。
  4. List遍历
    • 用迭代器Iterator遍历,它在集合的实例调用的时候创建。
    • Iterator仅用于遍历,不可再遍历的时候进行数据改动
    • 主要有两个方法,hasNext()判断是否有下一个元素,next()返回下一个元素

equals

  1. 对于自定义引用数据类型List,如果使用某些方法,其底层实现调用了equals(),那么就要重写equals(),否则会报错。

  2. equals() 重写

    1. 先确定哪些字段相等,实例就相等
    2. 利用instanseof判断传入和要比较的是不是同一类型,一致继续,否则返回false
    3. 对于引用类型使用Object.equals()比较,相比字段.equals()方法可以防止出现空指针错误基本类型用==比较
      实例
    public class Student {
    	public String name;
    	public int id;
    	@Override
    	public boolean equals(Object o){
    		if(o instanceof Student){
    			Student s = (Student) o
    			return Object(this.name, s,name) && this.id == s.id;
    		}
    	}
    }    
    

Map

  1. Map是一个接口,hashMap是实现类

  2. Map特点

    • put()会替换原有的key对应的value
  3. Map遍历

    • 遍历value,利用keySet()方法返回keySet集合
     Map<String, Object> map = new HashMap();
     for(String key :  map.keySet()){
         System.out.println(key + " = " + map.get(key));
     }
    
    • 遍历keyvalue, 利用entrySet()方法返回key-valueSet集合
     Map<String, Object> map = new HashMap();
     for(Map.Entry<String, Object> entry :  map.entrySet()){
         System.out.println(entry.getKey() + " = " + entry.getValue);
     }
    
  4. Map中equals()和hashCode()方法的重写

    • 对于自定义引用类型,在Map中也会存在无法使用equals比较的问题。所以需要重写equals()
    • 对于Map映射,相同的keyhashCode()返回值也一定要相同,即对应的value要一致,因为value是存储在一个数组中,而keyhashCode()得到的正是value对应的索引值。因此我们还需要重写hashCode()
    • 重写注意点
      • 利用hash()时传入参数应该是你重写equals()所用的属性
      • 所以常说,一个类重写了‘equals()’,就一定要重写hashCode()
    • 实例
    import java.util.Comparator;
    import java.util.Map;
    import java.util.TreeMap;
    
    public class treeMapTest {
         static class Student {
             public String name;
             public int id;
    
             public Student(String name, int id) {
                 this.name = name;
                 this.id = id;
             }
    
         }
        public static void main(String[] args) {
            Map<Student,String> map = new TreeMap<>(new Comparator<Student>() {
                @Override
                public int compare(Student t1, Student t2) {
                    return Integer.compare(t1.id, t2.id);	//按照学号排序;
                }
            });
            map.put(new Student("王五",14), "二等奖");
            map.put(new Student("张三",13), "一等奖");
            map.put(new Student("李四",12), "三等奖");
            for(Student s : map.keySet()){
                System.out.println(s.id + "=" +map.get(s));//13=一等奖 14=二等奖 12=三等奖
            }
        }
    }
    
  5. 如果Mapkeyenum类型,推荐使用EnumMap,既保证速度,也不浪费空间。
    Map<DayOfWeek, String> map = new EnumMap<>(DayOfWeek.class)

  6. SortMap这个接口的常用实现类TreeMap可以让key按顺序排列,但是在使用时要注意两点

    • TreeMap 的原理不依赖equals()hashCode(),所以对于自定义引用类型,无需重写这两个方法。
    • 但是排序Compartor接口,所以要求重写compare()
     import java.util.Comparator;
     import java.util.Map;
     import java.util.TreeMap;
     
     public class treeMapTest {
     
     
          static  class Student implements Comparable<Student>{
              public String name;
              public int id;
     
              public Student(String name, int id) {
                  this.name = name;
                  this.id = id;
              }
             @Override
             public int compareTo(Student o) {
                 return this.id - o.id
             }
     
     
         }
         public static void main(String[] args) {
             Map<Student,String> map = new TreeMap<>();
             map.put(new Student("王五",14), "二等奖");
             map.put(new Student("张三",13), "一等奖");
             map.put(new Student("李四",12), "三等奖");
             for(Student s : map.keySet()){
                 System.out.println(s.id + "=" +map.get(s));//12=三等奖 13=一等奖 14=二等奖
             }
         }
     }
    
    

properties

  1. 使用流程
    1. 创建Properties实例;
    2. 调用load()读取文件;
    3. 调用getProperty()获取配置。
  2. 实例
    public class propertiesTest {
        public static void main(String[] args) throws Exception {
    //      File f = new File("/test.properties");//"D:\test.properties"
    //      File f = new File("test.properties");//D:\IdeaCode\Algorithms\test.properties
            File f = new File("src/com/base/collection/test.properties");//D:\IdeaCode\Algorithms\src\com\base\collection\test.properties
            /*  /表示根目录,即磁盘D
                不加就是相对路径,从项目文件夹开始 即D:\IdeaCode\Algorithms
             */
            f.createNewFile();
            System.out.println(f.getAbsoluteFile());
            //读取properties
            Properties prop = new Properties();
            prop.load(new FileInputStream(f));
            String url = (String) prop.get("url");
    
            //写入
            prop.setProperty("name","niuniu");
            prop.store(new FileOutputStream(f),"注释");//将内容输入进去
            String name =  prop.getProperty("name");
            
            
            System.out.println(url);
            System.out.println(name);
        }
    }
    

    set

    1. Set是一个接口,实现类有HashsetTreeSet
    2. HashSet保证元素不重复,但不保证元素顺序,内部实现原理就是HashMap中的key,所以在使用时要正确实现equals()hashCode()
    3. TreeSet实现了SortedSet接口,可以保证元素的顺序。但是要注意实现Compare接口,如果没有实现,那么创建TreeSet时必须传入一个Comparator对象。

queue

  1. Queue是一个接口,实现类有LinkListPriorityQueue
  2. 实现基本操作的方法:
    • 通过add()/offer()方法将元素添加到队尾;
    • 通过remove()/poll()从队首获取元素并删除;
    • 通过element()/peek()从队首获取元素但不删除。
    • 后面三种Queue独有的方法,操作失败不会抛出异常,而是返回null
  3. PriorityQueue指优先队列。PriorityQueue默认按元素比较的顺序排序(必须实现Comparable接口),也可以通过Comparator自定义排序算法(元素就不必实现Comparable接口)。
    实例
    import java.util.Comparator;
    import java.util.PriorityQueue;
    import java.util.Queue;
    
    public class PriorityQueueTest {
        public static void main(String[] args) {
            Queue<Student> queue = new PriorityQueue(new Student());//这个Comparator
            queue.offer(new Student(10, "xiaohong"));
            queue.offer(new Student(2, "xiaofan"));
            System.out.println(queue.peek().name);
        }
    
        static class Student implements Comparator<Student> {
            int id;
            String name;
    
            public Student(int id, String name) {
                this.id = id;
                this.name = name;
            }
    
            public Student() {
            }
    
            @Override
            public int compare(Student o1, Student o2) {
                return Integer.compare(o1.id, o2.id);
            }
        }
    }
    
  4. Deque指先进先出队列,继承Queue接口。可以利于它来创建栈。内部有与栈相关的push()pop()peek()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值