Java 스레드(Thread) Runable 인터페이스

Runable 인터페이스

Runable 인터페이스를 이용한 방식은 java.lang.Runnable 인터페이스를 implements로 정의를 하고 run메소드(Overriding)를 재정의한다. 먼저 살펴본 Thread 상속 방식과 동일하게 run 메소드에는 스레드 실행 동작할 코드를 기술하면 된다.

예제 1) Thread 1개

package com.devkuma.tutorial.thread;

public class MyRunnable implements Runnable {

    public void run() {
        for (int i = 0; i < 10; i++) {
            System.out.println("This is thread. i=" + i);
        }
    }

    public static void main(String[] args) {
        MyThread thread = new MyThread();
        thread.start();
    }
}

실행 결과는 아래와 같다.

This is thread. i=0
This is thread. i=1
This is thread. i=2
This is thread. i=3
This is thread. i=4
This is thread. i=5
This is thread. i=6
This is thread. i=7
This is thread. i=8
This is thread. i=9

결과는 Thread 클래스의 예제1)번과 동일하다. 이것도 스레드가 1개이기에 단순히 반복을 실행 시킨 결과가 같다. 스레드가 여러개를 실행 시키게 되면 동시에 여러 스레드가 실행이 되면서 각각 결과를 표시하게 될 것이다.




최종 수정 : 2021-08-27