【Developer Log】Thread-safe
... 에 있다http://www.asjava.com/core-java/thread-safe-hash-map-in-java-and-their-performance-benchmark/스 레 드 안전 에 대한 상세 한 분석 이 있 습 니 다. entry 를 추가 삭제 하 는 것 은 스 레 드 안전 을 설계 하 는 것 입 니 다. key 에 대응 하 는 value 만 수정 하 는 것 은 고려 범위 에 속 하지 않 습 니 다. (이것 은 원자 조작 과 관련 이 있 을 수 있 으 므 로 걱정 하지 않 아 도 됩 니 다)
What does the thread safe Map means? If multiple threads access a hash map concurrently, and at least one of the threads modifies the map structurally, it must be synchronized externally to avoid an inconsistent view of the contents. (A structural modification is any operation that adds or deletes one or more mappings; merely changing the value associated with a key that an instance already contains is not a structural modification.)
List 에 대해 서 는 Vector 는 스 레 드 가 안전 하지만 Array List 는 그렇지 않 습 니 다. javadoc 에 서 는 Vector 를 이렇게 설명 합 니 다.
As of the Java 2 platform v1.2, this class was retrofitted to implement theList interface, making it a member of theJava Collections Framework. Unlike the new collection implementations,
Vector
is synchronized. If a thread-safe implementation is not needed, it is recommended to useArrayList in place of Vector
. Map 에 대해 서 는 Hashtable 은 스 레 드 가 안전 하지만 HashMap 은 그렇지 않 습 니 다. 그러나 오래된 Hashtable 을 사용 하면 성능 이 정말 좋 지 않 을 때 가 있 습 니 다. 또한 Hashtable 은 null 을 값 으로 허용 하지 않 고 HashMap 은 허용 합 니 다. 우 리 는 다음 두 가지 방식 으로 실현 할 수 있 습 니 다. 예 를 들 어 대체 에 대해 서 는.
Map
방식 1: Collections. synchronizedMap 사용
Map<String,Integer>threadSafeMap = Collections.synchronizedMap(new HashMap<String, Integer>());
방식 2: 자바 1.5 에 도 입 된 Concurrent HashMap
Map<String,Integer> threadSafeMap = new ConcurrentHashMap<String, Integer>();
근거http://www.asjava.com/core-java/thread-safe-hash-map-in-java-and-their-performance-benchmark/의 테스트 데 이 터 는 ConcurrentHashMap 의 효율 이 더욱 높 습 니 다. 따라서 thread - safe 의 사용 이 필요 합 니 다. 가능 한 한 ConcurrentHashMap 을 사용 해 야 합 니 다.
개발 로그
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.