Open lambertxiao opened 6 years ago
hashmap实现的数据结构,数组、桶等。
hashmap的哈希冲突解决方法:拉链法等。拉链法的优缺点。
hashmap的参数及影响性能的关键参数:加载因子和初始容量。
Resize操作的过程。
hashmap容量为2次幂的原因。
hashtable线程安全、synchronized加锁。
hashtable和hashmap异同。
为什么hashtable被弃用?
concurrenthashmap相比于hashtable做的优化
segment的概念
concurrenthashmap高效的原因
容器类中fastfail的概念。
concurrenthashmap的插入操作是直接操作数组中的链表吗?
列举几个Java中Collection类库中的常用类
List、Set、Map是否都继承自Collection接口?存储特点分别是什么?
ArrayList、LinkedList和Vector之间的区别与联系
HashMap和Hashtable、TreeMap以及ConcurrentHashMap的区别
Collection 和 Collections的区别
其他的集合类:treeset,linkedhashmap等。