본문 바로가기
Java

29. Map에서 요소의 총합 구하기

by Status Code 2023. 5. 5.
// 값의 총합 구하기
int sum = map.values().stream().mapToInt(Integer::intValue).sum();

 

댓글