package kr.or.didt.basic;
//yield 메서드 사용하기
public class ThreadTest11 {
public static void main(String[] args) {
YieldThread th1 = new YieldThread("1번 쓰레드");
YieldThread th2 = new YieldThread("2번 쓰레드");
th1.start();
th2.start();
try {
Thread.sleep(10);//100/1초 쉬기
} catch (InterruptedException e) {
// TODO: handle exception
}
System.out.println("111111111-----------------------------------111111111");
th1.work = false;
try {
Thread.sleep(10);//100/1초 쉬기
} catch (InterruptedException e) {
// TODO: handle exception
}
System.out.println("222222222222-----------------------------------2222222");
th1.work = true;
try {
Thread.sleep(10);//100/1초 쉬기
} catch (InterruptedException e) {
// TODO: handle exception
}
System.out.println("333333-------------------------33333333333333");
th1.stop = true;
th2.stop = true;
}
}
//yield() 메서드 연습용 스레드
class YieldThread extends Thread{
public boolean stop = false;
public boolean work = true;
public YieldThread(String name){
super(name);
//쓰레드의 이름 설정하기
//부모 스레드의 생성자에서 name의 속성이 들은 변수
}
@Override
public void run() {
while(!stop){
//stop값이 true이면 반복문 탈출
if(work){
//반복문 안에서 일하는 조건
//(true이면 계속 일하지만 false일때는 아무것도 안하고 반복 => 비효율적)
//getName()메서드 => 쓰레드 이름(name속성값) 반환
System.out.println(getName() + "작업중...");//true
}else{
System.out.println(getName() + "양보...");//false
Thread.yield();
}
}
}
}