Notice
Recent Posts
Recent Comments
SNOWFLAKES DRAWING PAPER
[JAVA] HashMap 변수에서 키값만 빼오기 본문
public static void main(String[] args) {
HashMap h = new HashMap();
h.put("test", "testval");
h.put("test2", "testval2");
Set set = h.keySet();
Iterator it = set.iterator();
while(it.hasNext())
System.out.println( it.next() );
}
}
// 출력
test
test2
import java.util.HashMap;
import java.util.Iterator;
public class HashMapSample
{
public static void main(String[] args)
{
HashMap<Integer, String> hm = new HashMap<Integer, String>();
hm.put(1, "일");
hm.put(2, "이");
hm.put(3, "삼");
hm.put(4, "사");
hm.put(5, "오");
Iterator<Integer> iter = hm.keySet().iterator();
while(iter.hasNext())
{
int nCount = iter.next();
System.out.println(hm.get(nCount));
}
}
}
결과는 당근
일
이
삼
사
오
'개발 > JAVA' 카테고리의 다른 글
스무살 자바, 어디로 가고 있는가? 한국 자바챔피언이 본 자바 20주년 (0) | 2015.06.02 |
---|---|
디자인 패턴 참고 (0) | 2015.02.27 |
JAR To Exe(JSmooth) (0) | 2013.09.24 |
[JAVA] 설치시 오류 : Old File not found. However, a file of the same name was found. No update done since file contents do no match.. (0) | 2008.09.14 |
[JAVA] JVM 6.0을 사용하는 Windows 시스템에서 Tomcat을 서비스로 시작하지 못하는 문제 (0) | 2008.09.11 |
Comments