hashmap和concurrenthashmap的區別?
你好。
有并發訪問的時候用concurrenthashmap,效率比用鎖的HashMap好 功能上可以,但是畢竟ConcurrentHashMap這種數據結構要復雜些,如果能保證只在單一線程下讀寫,不會發生并發的讀寫,那么就可以試用HashMap。ConcurrentHashMap讀不加鎖,寫...hashmap和concurrenthashmap的區別?
你好。
有并發訪問的時候用concurrenthashmap,效率比用鎖的HashMap好 功能上可以,但是畢竟ConcurrentHashMap這種數據結構要復雜些,如果能保證只在單一線程下讀寫,不會發生并發的讀寫,那么就可以試用HashMap。ConcurrentHashMap讀不加鎖,寫...