Java/series14 [Java 2편] stream 내에서 CheckedException, RuntimeException 처리 source 는 Github 에 있습니다. 목차는 Java series 에 있습니다. [Java 2편] stream 내에서 CheckedException, RuntimeException 처리 source code stream 내에서 CheckedException 과 RuntimeException 처리 관련 코드 예시에 대해서 정리했습니다. public class StreamWithExceptionTest { @Test public void stream_내에서_RuntimeException_테스트() { String[] strings = new String[] {"hello", "world", "hi"}; List list = Arrays.asList(new String[]{"abcde", "test", .. 2022. 6. 28. [Java 1편] stream 내에서 값이 제일 큰 객체 추출 source 는 Github 에 있습니다. 목차는 Java series 에 있습니다. [Java 1편] stream 내에서 값이 제일 큰 객체 추출 설명 stream 내에서 숫자 값이 제일 큰 객체를 추출합니다. max 와 Comparator.comparing 을 조합해 amount 가 가장 큰 객체를 추출합니다. source code package stream; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.springframework.util.StringUtils; import java.util.ArrayList; import java.util.Comparator; import java.util.L.. 2022. 6. 27. 이전 1 2 3 4 다음