Á» µµ¿Í ÁÖ¼¼¿ä...»¡¸®ÇؾßÇϴµ¥...


[ ´ÙÀ½ ±Ûµé ] [ À̾ ±Û¿Ã¸®±â(´äÇϱâ) ] [ ÀÚ¹Ù ¹¯°í ´äÇϱâ ]

±Û¾´ÀÌ :±èÁø¾Æ 2000³â 6¿ù 10ÀÏ 02:44:38

ÀÌ·¸°Ô Çߴµ¥ ÀÚ²Ù null¸¸ ¶ß´Â°ÅÀÖÁÒ..ÈæÈæ
¾îÄÉÇؾßÇϳª¿ä???
import java.util.*;
class Students{
int age;


public Students(int age){
this.age=age;
}
}
public class HashClass{
public static void main(String[] args){
Hashtable table=new Hashtable();
table.put("95030000",new Students(23));
table.put("95030001",new Students(24));
table.put("95030003",new Students(25));
Integer[] keys={new Integer(95030003),new Integer(95030001)};

for(int i=0; i<keys.length; i++){
Students st=(Students)table.get(keys[i]);
System.out.println(st);
}
}
}


´ÙÀ½ ±Ûµé:



À̾ ±Û¿Ã¸®±â(´äÇϱâ)

À̸§:
E-Mail:
Á¦¸ñ:
³»¿ë:
HTML ÅÂ±× Æ÷ÇÔ ¿©ºÎ: HTML ¹®¼­ÀÏ °æ¿ì üũ
°ü·Ã URL(¼±ÅÃ):
URL Á¦¸ñ(¼±ÅÃ):
°ü·Ã À̹ÌÁö URL:


[ ´ÙÀ½ ±Ûµé ] [ À̾ ±Û¿Ã¸®±â(´äÇϱâ) ] [ ÀÚ¹Ù ¹¯°í ´äÇϱâ ]