-> 실행 방법은 Thread와 달라진다.
class Thread_Ex4 implements Runnable {
@Override
public void run() {
// TODO Auto-generated method stub
try{
for(int i=0; i<20; i++) {
Thread.sleep(1000);
System.out.println(i + "번 : " + i + " * " + i +"= " + (i*i));
}
}
catch(InterruptedException a){
System.out.println(a.getMessage());
}
}
}
public class ex7_3 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Thread_Ex4 thread = new Thread_Ex4(); // 인트턴스화해서
Thread ob = new Thread(thread); // 스레드에 넘겨준다.
ob.start();
}
}