Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

자바 8에 추가된 함수형 인터페이스에 대해 알아보자 #30

Open
sure-why-not opened this issue Mar 14, 2022 · 1 comment
Assignees
Labels
ch3 about chapter 3

Comments

@sure-why-not
Copy link

문제

책에서는 Predicate, Consumer, Function 함수형 인터페이스에 대해서만 설명해주었다. 그 외에 자바 8에 추가된 함수형 인터페이스에 대해 짚고 넘어가자.

선정 배경

최근 미션에서 BiPredicate 를 사용한 예시를 몇번 보았는데, 코드가 훨씬 간결해지고 가독성이 높아지는 것을 볼 수 있었다. 직접 함수형 인터페이스를 구현해서 잘 사용하는 것도 중요하지만, 자바에서 만든 검증된 표준 함수형 인터페이스를 잘 활용할 줄 아는 것도 중요하다고 생각한다.

관련 챕터

  • [3장] 람다 표현식
    • p.105
@sure-why-not sure-why-not added the ch3 about chapter 3 label Mar 14, 2022
@sure-why-not
Copy link
Author

sure-why-not commented Mar 21, 2022

Supplier

  • 인자를 받지 않고 Type T 객체를 리턴하는 함수형 인터페이스
Supplier<Item> supplier= ()-> new Item(10, "Hello");
Item result = supplier.get();

UnaryOperator

  • Type T의 인자 하나를 받고, 동일한 Type T 객체를 리턴하는 함수형 인터페이스
UnaryOperator<Integer> unaryOperator1 = n -> n * n;
Integer result = unaryOperator1.apply(10);

UnaryOperator<Integer> func1 = n -> n * 2;
UnaryOperator<Integer> func2 = n -> n * 3;
Integer result = func1.andThen(func2).apply(10);

BinaryOperator

  • Type T의 인자 두개를 받고, 동일한 Type T 객체를 리턴하는 함수형 인터페이스
BinaryOperator<Integer> binaryOperator = (n1, n2) -> n1 + n2;
Integer sum = binaryOperator.apply(10, 100);

BiPredicate

  • 2개의 인자를 받고 boolean을 리턴하는 함수형 인터페이스이다.
BiPredicate<Integer, Integer> biPredicate = (n1, n2) -> n1 > n2;
boolean result = biPredicate.test(10, 100);

BiConsumer

  • 2개의 인자를 받고 리턴 값이 없는 함수형 인터페이스
BiConsumer<Integer, Integer> biConsumer = (n1, n2) -> System.out.println(n1 * n2);
biConsumer.accept(10, 20);

BiFunction

  • 2개의 인자(Type T, U)를 받고 1개의 객체(Type R)를 리턴하는 함수형 인터페이스
BiFunction<String, String, String> func1 = (s1, s2) -> {
   String s3 = s1 + s2;
   return s3;
};
String result = func1.apply("Hello", "World");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ch3 about chapter 3
Projects
None yet
Development

No branches or pull requests

1 participant