`ConcurrentHashMap`并发。

答案解析

`ConcurrentHashMap`采用分段锁(JDK7)或CAS+Synchronized(JDK8),实现高效并发安全,支持多线程同时读写不同桶的数据。