SSAFY-Book-Study / modern-java-in-action

모던 자바 인 액션 북스터디입니다.
1 stars 10 forks source link

3 Weeks - [ConcurrentHashMap과 HashMap] #44

Open dpwns523 opened 1 year ago

dpwns523 commented 1 year ago

문제

HashMap과 ConcurrentHashMap은 어떤점들이 다르고 어떤상황에 적합한가요? HashMap은 동시성 이슈를 해결하지 못하는걸까요?

contents - 세부 내용

HashMap과 ConcurrentHashMap이 책에서 소개되는데 좀 더 자세히 비교해보면 좋을 것 같습니다

참고

P290

MadCom96 commented 1 year ago
  1. HashMap과 ConcurrentHashMap은 어떤점들이 다르고 어떤상황에 적합한가요?

HashMap

ConcurrentHashMap

번외 : HashTable

결론적으로...


  1. HashMap은 동시성 이슈를 해결하지 못하는걸까요?
    • 내부적 구조 자체가 동시성을 고려하지 않았기에 HashMap을 상속하여 구현을 다르게 하지 않는 이상 힘들 것 같아요.

참고 : https://tecoble.techcourse.co.kr/post/2021-11-26-hashmap-hashtable-concurrenthashmap/