티스토리 뷰
예시
1. forEach + 람다함수 사용
Map<String, Stirng> tempMap = new HashMap<String, String>;
tempMap.put("가", "A");
tempMap.put("나", "B");
tempMap.put("다", "C");
tempMap.forEach((key, value)->{
System.out.println(key); // key
System.out.println(value); // value
});
2. 향상된 For문 + Set 사용
Map<String, Stirng> tempMap = new HashMap<String, String>;
tempMap.put("가", "A");
tempMap.put("나", "B");
tempMap.put("다", "C");
for (String key : tempMap.KeySet()) {
System.out.println(key); // key
System.out.println(tempMap.get(key)); // value
}
'JAVA' 카테고리의 다른 글
java 프로세스 메모리가 계속 증가한다..! 메모리 누수일까? (0) | 2022.03.13 |
---|---|
추상 구문 트리(abstract syntax tree, AST)란? (0) | 2022.02.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- UE4
- Lambda
- unrealengine
- LambdaFunction
- coordinate system
- c++
- 람다함수
- double free
- rotator
- bug
- Trouble shooting
- 람다
- UE5
- c++11
- C
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함