HashTable은 null 객체가 아니라면 어느 키나 값을 사용할 수 있다. HashTable은 동기화를 한다. 따라서 한명의 사용자가 사용하는 어플리케이션 제작에 사용한다.
해시 태이블 작성 코드
HashTable table = new HashTable();
table.put(one", new Integer(1) );
table.put("two", new Integer(2) );
table.put("three", new Integer(3) );
해시 테이블에 수치를 꺼내기
Integer n = (Integer) table.get("two");
if ( n != null ) {
System.out.println("two = " + n );
}
'자바(Java) > JAVA 2SE' 카테고리의 다른 글
try ~ catch ~ finally (0) | 2009.11.11 |
---|---|
java.util.Iterator - 콜렉션 (0) | 2009.10.30 |
java.util.HashMap - Hash 객체 (0) | 2009.10.30 |
부호가 있는 텍스트형 실수를 실수형으로 변환시키기 (0) | 2009.10.13 |
Java Excel API의 포멧(데이터형식) (0) | 2009.09.10 |