摘要: //Node类为单向链表static class Node implements Map.Entry { final int hash; final K key; V value; Node next; Node(int hash, K key, V value, Node next) { ... 阅读全文
posted @ 2017-05-09 14:34 wqkant 阅读(262) 评论(0) 推荐(0) 编辑