본문 바로가기
IT

인터페이스를 이용한 스레드 기법 RunnableThreadTest.java

by 하센세 2008. 11. 14.

class RunnableThread implements Runnable
{
 public void run(){
  System.out.println("Runnable 인터페이스를 구현");
 }
}

public class RunnableThreadTest
{
 public static void main(String[] args)
 {
  Thread t = new Thread(new RunnableThread());
  t.start();
 }
}