//두개의 쓰레드 객체가 교대로 수행되도록
import java.util.*;
public class ThreadYield implements Runnable {
public void run() {
for( int i=1 ; i<100 ; i++ ) {
System.out.println( Thread.currentThread().getName() + " : " + i + " : " + new
Date().toString() );
// thread를 block시킴
Thread.yield();
}
}
public static void main( String[] args ) {
ThreadYield ts = new ThreadYield();
// 두개의 Thread 생성
Thread first = new Thread( ts, "first" );
Thread second = new Thread( ts, "second" );
first.start(); // 먼저 들어가서 대기
second.start(); // 나중에 들어가서 먼저 실행
// 후 다시 들어갔을 땐 다시 대기하여 firt가 수행되면 다시 수행
}
}
'새로워지기 > 서른의 생활코딩' 카테고리의 다른 글
ex10) java_thread (0) | 2012.03.04 |
---|---|
ex9) java_thread (0) | 2012.03.04 |
ex7) java_thread (0) | 2012.03.04 |
ex6) java_thread (0) | 2012.03.04 |
ex5) java_thread (0) | 2012.02.27 |
댓글