원리 분석
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!