런에이블.
Package java.lang;
public interface Runnable{ public abstract void run(); }
자바 7쓰래드 생성
public class AsyncHelloWorld{
public static class HelloWorld implements Runnable{
@Override
public void run(){
System.out.println("Hellow World!");
}
}
public static void main(String[] args){
new Thread(new HelloWorld()).start();
}
}
자바 8 쓰래드생성
public class AsycHelloWorld{
public static void main(String[] args){
new Thread(()-> {
System.out.println("Hellow World!");
}).start();
}
}
(인자목록) -> {구문}
람다식 예
(int n, String str) -> {return str+n;}
(int n, String str) -> str + n
(n,str) -> str + n
str-> str+1
( ) -> "hello, wold!"
'IT > JAVA' 카테고리의 다른 글
java 향상된 for문 foreach 루프 사용방법 (0) | 2017.05.04 |
---|---|
VO,JAVA -> JSON 변경( null empty 공백 제거) jar파일 (0) | 2017.05.04 |
[Java/자바] split 메서드 사용법 / java split / 글자 잘라내기 (0) | 2017.05.01 |
1. Annotation 이란. [java] (0) | 2017.04.13 |
[Tip] 이클립스 콘솔창 폰트 크기 조절 (Change the console font size in Eclipse) (0) | 2016.11.15 |
JSP properties 변경시 간단하게 변경방법 서블릿 클래스 (0) | 2016.06.27 |
자바의정석 PPT (0) | 2016.05.30 |