티스토리 뷰
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | package com.mkyong; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; public class LoopMap { public static void main(String[] args) { // initial a Map Map<String, String> map = new HashMap<String, String>(); map.put("1", "Jan"); map.put("2", "Feb"); map.put("3", "Mar"); map.put("4", "Apr"); map.put("5", "May"); map.put("6", "Jun"); // Map -> Set -> Iterator -> Map.Entry -> troublesome, not recommend! System.out.println("\nExample 1..."); Iterator<Entry<String,String>> iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<String,String> entry = (Map.Entry<String,String>) iterator.next(); System.out.println("Key : " + entry.getKey() + " Value :" + entry.getValue()); } // more elegant way, this should be the standard way, recommend! System.out.println("\nExample 2..."); for (Map.Entry<String, String> entry : map.entrySet()) { System.out.println("Key : " + entry.getKey() + " Value : " + entry.getValue()); } // weired, but works anyway, not recommend! System.out.println("\nExample 3..."); for (Object key : map.keySet()) { System.out.println("Key : " + key.toString() + " Value : " + map.get(key)); } //Java 8 only, forEach and Lambda. recommend! System.out.println("\nExample 4..."); map.forEach((k,v)->System.out.println("Key : " + k + " Value : " + v)); } } | cs |
'1. 자바' 카테고리의 다른 글
중고차 판매웹 JPA Entities (0) | 2020.05.27 |
---|---|
자바/이클립스/2020-05-24/ 톰캣 깨끗이 삭제 하기 (0) | 2020.05.24 |
control-model-jdbc BoardDao.java (0) | 2020.05.24 |
이클립스에서 JRE 를 JDK 로 변환하기 (0) | 2020.05.24 |
Txt: is-a 관계와 has-a 관계의 비교 (0) | 2020.05.24 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- intellij
- React
- FLASK
- Java
- JUnit
- terms
- AWS
- Algorithm
- docker
- SQLAlchemy
- springMVC
- SpringBoot
- Mongo
- maven
- Oracle
- ERD
- Eclipse
- database
- JPA
- vscode
- Python
- jQuery
- KAFKA
- nodejs
- tensorflow
- Django
- COLAB
- Mlearn
- mariadb
- Git
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함