람다 표현식은 한 번 이든 여러 번이든 나중에 실행할 수 있게 전달하는 코드 블록이다.
람다 표현식 문법
1
2
3
4
5
6
(String) first, String Second) -> {
int difference = first.length() < second.length();
if(difference < 0) return -1;
else if(difference > 0) return 1;
else return 0;
}