ConcurrentHashMap
Thread-Safe 한 HashMap. null값을 허용하지 않음.putIfAbsent(K, V) 메소드가 존재. 대상 key가 존재할 경우 기존값을 반환하고 존재하지 않을 경우엔 설정값을 반환
ConcurrentHashMap<String, Integer> chm = new ConcurrentHashMap<>();
chm.put("key1", 0);
// 존재하는 key1 에 대하여 기존값인 0 사용
chm.putIfAbsent("key1", 1);
// 존재하지않는 key2 에 대하여 설정값인 -1 사용
chm.putIfAbsent("key2", -1);
Collections.synchronizedMap()
다른 map들도 thread-safe 하게 wrapping 하여 사용할 수 있습니다.Collections.synchronizedMap(new HashMap<Long, String>());
0 개의 댓글:
댓글 쓰기