Java 8이 제공하는 함수형 인터페이스
Supplier 인터페이스는 T get() 추상화 메소드 제공
Supplier<Apple> appleSupplier = () -> new Apple("pad", "ipad", "1,000,000"); Apple apple = appleSupplier.get(); System.out.println(apple.toString());
Lazy initialize