스트림의 최종연산 가. reduce() Stream의 데이터를 더하거나 빼는 등 사칙연산을 사용하여 하나의 값으로 출력한다. 예제 : 1~10까지의 값을 모두 더하는 방법이다. IntStream intStream = IntStream.rangeClosed(1, 10); int num = intStream.reduce((x, y)-> x+y) .orElse(0); 연산을 하기에 초기값 설정을 해준다. 연산을 하기에 초기값 설정 방법은 2가지가 있다. 첫번째 : orElse IntStream intStream2 = IntStream.rangeClosed(1, 10); int num = intStream.reduce((x, y)-> x+y) .orElse(0); System.out.println(num); /..
1. 스트림의 연산(중간연산과 최종연산)에 어떤것들이 있을까? 중간연산 - 연산결과가 스트림인 연산. 0~N번 반복적으로 적용 가능하다. 최종연산 - 연산결과가 스트림이 아닌연산으로 단 한번만 적용 가능하다. 스트림의 요소를 소모한다. 예제로 설명해보자면 아래와 같다. stream.distinct().limit(5).sorted().forEach(System.out::print); // ----------중간연산----------- -----최종연산 스트림 소모------ distinct() 중복제거 limit(5) 5개 자르기 sorted() 정렬 그럼 스트림의 중간연산에 대해 알아보자! 중간연산 설명 Stream distinct() 중복을 제거 Stream filter(Predicate predica..
- Total
- Today
- Yesterday
- AnnotationConfigApplicationContext
- Vuex
- JPA
- stream
- 차이
- install
- nginx
- docker
- vscode
- MAC
- 최종연산
- 자바8
- elasticsearch
- mvn
- ngnix
- container
- 스트림
- Intellij
- springboot
- 중간연산
- Vue
- java
- ApplicationContext
- map
- NPM
- 영속성 컨텍스트
- lambda
- 람다
- webpack
- BeanFactory
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |