헤쉬테이블(HashTable) 사용 예(1)
import java.util.Hashtable;
public class HashtableTest {
public static void main(String[] args) {
Hashtable hashtable = new Hashtable();
//1. hashtable에 객체의 삽입
hashtable.put("Name", new String("홍길동"));
hashtable.put("Age", new Integer(27));
hashtable.put("Tel", new String("02-1111-2222"));
hashtable.put("Handphone", new String("017-777-9999"));
hashtable.put("Etc", new String("I'm a boy"));
//키 값을 이용하여 객체 추출
String name = (String)hashtable.get("Name");
if (name != null) {
System.out.println("Name = " + name);
}
Integer age = (Integer)hashtable.get("Age");
if (age != null) {
System.out.println("Age = " + age.intValue());
}
}
}
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis ) Spring MVC 개발 (0) | 2015.11.18 |
---|---|
자바기초강좌 교육자료] 헤쉬테이블(HashTable) 사용 예(2) (0) | 2015.09.10 |
구로자바학원 추천 교육자료] 헤쉬테이블(HashTable) (0) | 2015.09.07 |
구로자바학원 추천 교육자료] 벡터(Vector) 사용 예(2) - 2 (0) | 2015.09.07 |
구로자바학원 추천 교육자료] 벡터(Vector) 사용 예(2) - 1 (0) | 2015.09.07 |