hashtable
-
What is HashMap?카테고리 없음 2016. 10. 12. 09:34
[참고] http://d2.naver.com/helloworld/831311 https://ko.wikipedia.org/wiki/%ED%95%B4%EC%8B%9C_%ED%95%A8%EC%88%98 HashMap과 HashTable HashMap과 HashTable은 Java의 API 이름이다. Hash Table이란 JDK 1.0부터 있던 Java의 API이고, HashMap은 Java2에서 처음 선보인 Java Collection Framework에 속한 API다. HashTable 또한 Map 인터페이스를 구현하고 있기 때문에 HashMap과 HashTable이 제공하는 기능은 같다. 다만 HashMap은 보조 해시 함수 (Additional Hash Function)를 사용하기 때문에 보조 해시 ..