열렬히.뛰기

Language > 프로그래밍 언어 > Java > 자바 : 자료구조 > 맵

Map

HashMap

java
Map map = new HashMap();
map.put("a", 1234);
map.put("b", 2245);
map.put("c", 9877);

TreeMap

java
Map map = new TreeMap();

Properties

(문자열, 문자열)의 형태로 저장하는 맵의 일종이다.

java
Properties prop = new Properties();
prop.setProperty("peter", 12);
prop.setProperty("john", 13);

Enumeration e = prop.propertyNames();
while (e.hasMoreElements())
	System.out.println((String)e.nextElement());