热门
面试官:HashMap如何实现线程安全?**
参考答案:
1、直接使用Hashtable类;
2、直接使用ConcurrentHashMap;
3、使用Collections将HashMap包装成线程安全的Map。