摘要: 8.HashMap源码分析? 底层:数组+链表(哈希表) 源码: // 结点 transient Node<K,V>[] table; // 每个结点里存储的内容 static class Node<K,V> implements Map.Entry<K,V> { final int hash; f 阅读全文
posted @ 2022-02-10 22:18 jsqup 阅读(27) 评论(0) 推荐(0) 编辑