My Blog

자바 배열에서 stream으로 최대값 찾기 본문

카테고리 없음

자바 배열에서 stream으로 최대값 찾기

JAESG 2023. 2. 23. 10:31
  • Arrays.stream()
    • 기본 배열을 IntStream 스트림으로 변환한다
  • max()
    • 결과를 Optional 객체로 반환한다
  • getAsInt()
    • int 값을 반환한다.
    • max값이 없는 경우에는 NoSuchElementException 예외가 발생할 수 있다
int[] side = new int[]{1, 2, 3};
int max_value = Arrays.stream(side)
                .max()
                        .getAsInt();
System.out.println(max_value);
728x90
Comments