Java Map 전체 출력

하우르·2021년 3월 22일
0
post-custom-banner
  
 HashMap<String, String> hashMap  = new HashMap<String, String>();
 Iterator<String> mapIter = hashMap.keySet().iterator();
 while(mapIter.hasNext()){
 
            String key = mapIter.next();
            String value = hashMap.get( key );
 
            System.out.println(key+" : "+value);
 
        }
 
profile
주니어 개발자

0개의 댓글