Java Thread - from Java Tutorials - 자바쓰레드 만들기 기초
자바쓰레드 구현 방법 2가지 Runnable 인터페이스 구현: A runnable object defines an actual task that is to be executed. It doesn't define how it is to be executed. Runnable is actually an interface, with the single run() method that we must provide. Thread 클래스 상속: A Java Thread object wraps around an actual thread of execution. It effectively defines ..