-Java8에서 지원하는 Lambda expression은 복잡한 메소드를 간결하게 형태의 함수 프로그래밍이 가능하도록 한다.
interface Anonymous{ public void printName(); } public class dailyCode { public static void main(String[] args) { Anonymous test = new Anonymous() { @Override public void printName() { System.out.println("anonymous class"); } }; test.printName();
Anonymous lamdaTest = ()-> System.out.println("lambda expression"); lamdaTest.printName(); } } |
'프로그래밍 > JAVA' 카테고리의 다른 글
How to get google server time (URLConnection Example) (0) | 2016.11.27 |
---|---|
URL class Example (0) | 2016.11.27 |
Find Google IP (InetAddress class Example) (0) | 2016.11.25 |
Arrays class Example (0) | 2016.11.23 |
Hashtable and HashMap Example (0) | 2016.11.21 |
Generics and Wildcard (0) | 2016.11.20 |
arraycopy Example (0) | 2016.11.19 |