0. 학습 목표 람다식 사용법 함수형 인터페이스 variable capture 메소드, 생성자 레퍼런스 0-1. 왜 람다인가? 사과는 무게, 색의 데이터를 가진다. 그리고 여기에 다양한 사과들의 리스트가 있다고 가정해보자. Apple.java public class Apple { private Color color; private int weight; public Apple(Color color, int weight) { this.color = color; this.weight = weight; } public Color getColor() { return color; } public void setColor(Color color) { this.color = color; } public int getWe..