본문 바로가기
IT

상속을 이용한 스레드 기법 ExtendsThreadTest.java

by 하센세 2008. 11. 14.


class ExtendThread extends Thread
{
 // run()을 오버라이딩해서 재정의한다.
 public void run(){
  System.out.println("Thread 클래스를 상속");
 }
}


class ExtendThreadTest
{
 public static void main(String[] args)
 {
  Thread t = new ExtendThread();
  //start()를 이용해서 스레드를 시작시킨다.
  t.start();
 }
}