摘要: 前言 正文 jdk版本:1.8.0_181 数据结构 数组,链表 红黑树;数据结构和HashMap数据结构一样; 构造方法 /** * Creates a new, empty map with the default initial table size (16). */ // 无参构造方法 pu 阅读全文
posted @ 2021-05-12 19:32 guoyuchuan 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 前言 正文 本文用jdk版本:1.8.0_181 和1.7 1.8版本 构造方法 // 无参构造方法 public HashMap() { this.loadFactor = DEFAULT_LOAD_FACTOR; // all other fields defaulted } // 指定容器初始 阅读全文
posted @ 2021-05-12 19:31 guoyuchuan 阅读(54) 评论(0) 推荐(0) 编辑