전체 글185 13. Map 요소 병렬 처리 13. Map 요소 병렬 처리 // 병렬 처리를 위한 맵 생성 Map parallelMap = new ConcurrentHashMap(); parallelMap.put("apple", 1); parallelMap.put("banana", 2); parallelMap.put("cherry", 3); // 모든 요소에 1을 더한 새로운 맵 생성 (병렬 처리) Map parallelMappedMap = parallelMap.entrySet().parallelStream() .collect(Collectors.toConcurrentMap(Map.Entry::getKey, entry -> entry.getValue() + 1)); 2023. 5. 3. 12. Map 요소 비교 12. Map 요소 비교 // 두 맵이 동일한지 비교 boolean isEqual = map1.equals(map2); 2023. 5. 3. 11. Map 요소 변환 11. Map 요소 변환 // 값에 1을 더한 새로운 맵 생성 Map mappedMap = map.entrySet().stream() .collect(Collectors.toMap(Map.Entry::getKey, entry -> entry.getValue() + 1)); 2023. 5. 3. 10. Map 요소 필터링 10. Map 요소 필터링 // 값이 2 이상인 요소만 필터링 Map filteredMap = map.entrySet().stream() .filter(entry -> entry.getValue() >= 2) .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); 2023. 5. 3. 9. Map 요소 병합 9. Map 요소 병합 // 두 맵 병합 (동일한 키가 있다면 뒤의 값으로 대체) Map map1 = new HashMap(); map1.put("apple", 1); map1.put("banana", 2); Map map2 = new HashMap(); map2.put("banana", 3); map2.put("cherry", 4); map1.putAll(map2); // map1: {"apple": 1, "banana": 3, "cherry": 4} 2023. 5. 3. 8. Map 요소 정렬 8. Map 요소 정렬 // 키로 정렬 Map sortedByKey = new TreeMap(map); // 값으로 정렬 (entrySet()을 리스트로 변환하여 정렬) List list = new ArrayList(map.entrySet()); list.sort(Map.Entry.comparingByValue()); Map sortedByValue = new LinkedHashMap(); for (Map.Entry entry : list) { sortedByValue.put(entry.getKey(), entry.getValue()); } 2023. 5. 3. 이전 1 ··· 20 21 22 23 24 25 26 ··· 31 다음