摘要: #HashMap的节点: HashMap是一个键值对的集合,其中每个节点用Node<K,V>表示 static class Node<K,V> implements Map.Entry<K,V>{ final int hash; final K key; V value; Node<K,V> nex 阅读全文
posted @ 2022-04-10 14:38 沐乃伊 阅读(23) 评论(0) 推荐(0) 编辑