jinsusong / CS-Study

CS
3 stars 5 forks source link

HashMap과 HashTable의 차이점 #60

Open anuu0916 opened 1 year ago

yerimstar commented 1 year ago

Java에서 HashTable과 HashMap의 차이는 동기화 지원 여부이다. 키(Key)에 대한 해시(Hash)값을 사용하여 값을 저장, 조회 하는 것은 동일하다. 해시 테이블(Hash Table)

해시 맵(Hash Map)

https://hee96-story.tistory.com/48

anuu0916 commented 1 year ago

출처 : https://devlog-wjdrbs96.tistory.com/253

anuu0916 commented 1 year ago

Java Collection Framework의 변화

SW-H commented 1 year ago

참고 [Java]

Map을 구현한 클래스 : HashMap, HashTable, TreeMap 등등