原理分析
1. HashMap では、put() メソッドの行コード modCount は一見するとスレッド安全ではありません。
2. 展開プロセス中に取得された値は不正確です。HashMap の展開により、新しい空の配列が作成され、古い項目が新しい配列に埋められます。この時点で値を取得すると、 null 値を取得します。
例
public class HashMapNotSafe { public static void main(String[] args) { final Map<Integer, String> map = new HashMap<>(); final Integer targetKey = 65535; // 65 535 final String targetValue = "v"; map.put(targetKey, targetValue); new Thread(() -> { IntStream.range(0, targetKey).forEach(key -> map.put(key, "someValue")); }).start(); while (true) { if (null == map.get(targetKey)) { throw new RuntimeException("HashMap is not thread safe."); } } } }
以上がJava HashMap の安全でないインスタンスの分析の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。