摘要: 1 HashMap方法 1.1 源码结构 //哈希桶 static class Node<K,V> implements Map.Entry<K,V> { final int hash; final K key; V value; //链表的下一个节点 Node<K,V> next; Node(in 阅读全文
posted @ 2020-07-02 22:05 微凉微 阅读(139) 评论(0) 推荐(0) 编辑