반응형

1. 람다 함수 : 프로그래밍 언어 사용되는 개념으로 익명 함수를 지칭하는 용어

 

2. 람다식 예제 (스레드 예제)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class test {
 
    public static void main(String[] args) {
        // 기초 자바 문법
        Thread thread = new Thread(new Runnable() {
            @Override
            public void run() {
                System.out.println("hello1");
            }
        });
        
        thread.run();
        
        // 람다식 문법
        Thread thread2 = new Thread(()-> {
            System.out.println("hello2");
        });
        thread2.run();
        
    }
 
}
cs

 

반응형

+ Recent posts