해쉬테이블1 [자료구조] HashTable - HashMap과 구조가 비슷하지만 용도가 다르다. - 키와 값을 1:1형태로 가져간다. - 동기화가 이루어진다. - null 입력이 불가능하다. 선언 import java.util.Hashtable; public class HashTableDemo { public static void main(String[] arg) { Hashtable ht = new Hashtable(); // 타입 설정x Object 설정 Hashtable i = new Hashtable(); // Integer, Integer 타입 선언 Hashtable i2 = new Hashtable(); // new는 타입 생략 가능 Hashtable i3 = new Hashtable(i); // i의 Hashtable을 i3으로 값 .. 2023. 11. 9. 이전 1 다음