Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- http
- Spring Boot
- Greedy
- java
- 스프링 핵심 기능
- kotlin
- Android
- 백준
- 인프런
- transaction
- spring
- 스프링 핵심 원리
- Servlet
- 김영한
- Proxy
- 자바
- QueryDSL
- 알고리즘
- springdatajpa
- pointcut
- Thymeleaf
- db
- JDBC
- 스프링
- jpa
- Exception
- JPQL
- SpringBoot
- 그리디
- AOP
Archives
- Today
- Total
개발자되기 프로젝트
reduce() 본문
1. reduce() 연산
- 자바가 stream()에 대한 연산을 제공하지만 상황에 딱 맞는 경우가 없을 수 있다.
- 이 때 사용자가 직접 stream()에 대한 연산을 직접 구현할 수 있다.
- 정의된 연산이 아닌 프로그래머가 직접 구현한 연산을 적용
- reduce(초기값 or 기본 값, BinaroOperator 구현 또는 람다식)
T reduce( T identify, BinaryOperator<T> accumulator)
- 최조 연산으로 스트림의 요소를 소모하여 연산을 수행
- 예시) 배열의 모든 요소의 합을 구하는 reduce()연산
Arrays.stream(arr).reduce(0, (a,b) -> a+b));
- reduce()메서드의 두 번째 요소로 전달되는 람다식에 따라 다양한 기능 수행할 수 있음.
- 람다식을 직접 구현하거나 람다식이 긴 경우 BinaryOperator를 구현한 클래스 사용.
- reduce()가 어떻게 동작하는지.. 설명이 부족..
Performs a reduction on the elements of this stream, using the provided identity value and an associative accumulation function, and returns the reduced value.
2. 배열에 문자열이 있을 때 길이가 가장 긴 문자열 찾기
class CompareString implements BinaryOperator<String>{
@Override
public String apply(String s1, String s2) {
{if (s1.getBytes().length >= s2.getBytes().length) return s1;
else return s2;}
}
}
public class ReduceTest {
public static void main(String[] args) {
String greetings[] = {"안녕", "hello", "hi", "ㅎㅇ", "반갑", "만반잘부"};
System.out.println(Arrays.stream(greetings).reduce("", (s1,s2) ->
{if (s1.getBytes().length >= s2.getBytes().length) return s1;
else return s2;}
));
System.out.println("=============================");
System.out.println(Arrays.stream(greetings).reduce(new CompareString()).get());
}
}
3. GitHiub : 211028 reduce()
'Java > 다양한 기능' 카테고리의 다른 글
예외 처리 (0) | 2021.10.29 |
---|---|
Stream활용 예시 (0) | 2021.10.29 |
객체지향 프로그래밍 vs 람다식 구현 (0) | 2021.10.27 |
Stream (0) | 2021.10.27 |
함수형 인터페이스, 람다식 구현 및 사용 (0) | 2021.10.27 |
Comments