• 大小: 1.27MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-28
  • 语言: Java
  • 标签: JAVA  HashMap  集合  面试  

资源简介

在本套课程中,将会非常深入、非常详细、非常全面的解读HashMap以及源码底层设计的思想。从底层的数据结构到底层源码分析以及怎样使用提高HashMap集合的效率问题等进行分析。如果掌握本套课程,那么再看其他javase的源码时会觉得很简单。

资源截图

代码片段和文件信息

package com.itheima.test_01;


import java.util.HashMap;

public class Test01 {
    public static void main(String[] args) {
        //创建HashMap集合对象
        HashMap hm = new HashMap<>();
        hm.put(“柳岩“ 18);
        hm.put(“杨幂“ 28);
        hm.put(“刘德华“ 40);
        hm.put(“柳岩“ 20);
        System.out.println(hm);
        System.out.println(“重地“.hashCode());
        System.out.println(“通话“.hashCode());
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-01-14 16:28  案例\
     目录           0  2020-01-14 16:28  案例\test\
     目录           0  2020-01-14 16:28  案例\test\.idea\
     文件         200  2019-12-30 19:47  案例\test\.idea\encodings.xml
     目录           0  2020-01-14 16:28  案例\test\.idea\inspectionProfiles\
     文件         418  2019-12-30 19:47  案例\test\.idea\inspectionProfiles\Project_Default.xml
     文件         273  2019-12-30 19:47  案例\test\.idea\misc.xml
     文件         248  2019-12-30 19:47  案例\test\.idea\modules.xml
     文件       55542  2019-12-30 19:47  案例\test\.idea\workspace.xml
     目录           0  2020-01-14 16:28  案例\test\out\
     目录           0  2020-01-14 16:28  案例\test\out\production\
     目录           0  2020-01-14 16:28  案例\test\out\production\test\
     目录           0  2020-01-14 16:28  案例\test\out\production\test\com\
     目录           0  2020-01-14 16:28  案例\test\out\production\test\com\itheima\
     目录           0  2020-01-14 16:28  案例\test\out\production\test\com\itheima\test_01\
     文件        1090  2019-12-30 19:47  案例\test\out\production\test\com\itheima\test_01\Test01.class
     文件        3998  2019-12-30 19:47  案例\test\out\production\test\com\itheima\test_01\Test02.class
     目录           0  2020-01-14 16:28  案例\test\src\
     目录           0  2020-01-14 16:28  案例\test\src\com\
     目录           0  2020-01-14 16:28  案例\test\src\com\itheima\
     目录           0  2020-01-14 16:28  案例\test\src\com\itheima\test_01\
     文件         495  2019-12-30 19:47  案例\test\src\com\itheima\test_01\Test01.java
     文件        2317  2019-12-30 19:47  案例\test\src\com\itheima\test_01\Test02.java
     文件         423  2019-12-30 19:47  案例\test\test.iml
     目录           0  2020-01-14 16:29  讲义\
     文件       68774  2019-12-30 18:43  讲义\HashMap集合(高级).md
     目录           0  2020-01-14 16:29  讲义\img\
     文件      257094  2019-12-30 19:47  讲义\img\1.bmp
     文件      303170  2019-12-30 19:47  讲义\img\1.png
     文件      146994  2019-12-30 19:47  讲义\img\2.bmp
     文件      131554  2019-12-30 19:47  讲义\img\image-20191114193730911.png
............此处省略17个文件信息

评论

共有 条评论