1. 程式人生 > >HashMap多執行緒不建議使用

HashMap多執行緒不建議使用

package com.jay.test.map;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

public class MapTest {

	public static void main(String[] args) {

		final Map<Integer, Integer> map = new HashMap<Integer, Integer>();
//		final Map<Integer, Integer> map = new ConcurrentHashMap<Integer,Integer>();
		new Thread(new Runnable() {
			public void run() {
				map.put(1, 1);
			}
		}).start();
		new Thread(new Runnable() {
			public void run() {
				map.put(2, 1);
			}
		}).start();
		new Thread(new Runnable() {
			public void run() {
				map.put(3, 1);
			}
		}).start();
		System.out.println(map);
	}
}

今天在網上看了下多執行緒使用HashMap會有問題,由於Hashmap不是執行緒安全的,多執行緒還是使用ConcurrenHashMap這個比hashtable

【執行緒安全的】效率更高的吧。帶來的問題

1、資料有概率丟失,上面的程式運行了,40%的概率丟失資料。

{1=1, 2=1}

2、有概率出現異常資訊,10%吧。

Exception in thread "main" java.util.ConcurrentModificationException
at java.util.HashMap$HashIterator.nextEntry(Unknown Source)
at java.util.HashMap$EntryIterator.next(Unknown Source)
at java.util.HashMap$EntryIterator.next(Unknown Source)
at java.util.AbstractMap.toString(Unknown Source)
at java.lang.String.valueOf(Unknown Source)
at java.io.PrintStream.println(Unknown Source)
at com.jay.test.map.MapTest.main(MapTest.java:28)

鑑於以上問題還是使用ConcurrentHashMap吧。