어떤 기준으로 적절한 함수형 인터페이스를 사용해야 하는가? #37
Answered
by
JoisFe
coalong
asked this question in
CHAPTER 3 람다 표현식 - Q&A
Replies: 1 comment
-
Comparator<Apple> c1 = (Apple a1, Apple a2) -> a1.getWeight().compareTo(a2.getWeight); // (1)
ToIntBiFunction<Apple> c1 = (Apple a1, Apple a2) -> a1.getWeight().compareTo(a2.getWeight); // (2)
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
coalong
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
어떤 기준으로 적절한 함수형 인터페이스를 사용해야 하는가?
p. 109
Beta Was this translation helpful? Give feedback.
All reactions