티스토리 뷰
HashMap 사용방법
public class MapIterationSample {
public static void main(String[] agrs) {
Map<String, String> map = new HashMap<String, String>();
map.put("키1", "값1");
map.put("키2", "값2");
map.put("키3", "값3");
map.put("키4", "값4");
map.put("키5", "값5");
map.put("키6", "값6");
// 방법1
Iterator<String> keys = map.keySet().iterator();
while( keys.hasNext() ){
String key = keys.next();
System.out.println( String.format("키 : %s, 값 : %s", key, map.get(key)) );
}
// 방법2
for( Map.Entry<String, String> elem : map.entrySet() ){
System.out.println( String.format("키 : %s, 값 : %s", elem.getKey(), elem.getValue()) );
}
// 방법3
for( String key : map.keySet() ){
System.out.println( String.format("키 : %s, 값 : %s", key, map.get(key)) );
}
}
}
'android' 카테고리의 다른 글
RecyclerView add,remove,delete (0) | 2018.12.03 |
---|---|
imeOptions 사용 (0) | 2018.10.25 |
Custom AutoCompleteTextView (0) | 2018.10.23 |
spannable string (0) | 2018.10.23 |
Remove the ActionBar (0) | 2018.10.16 |