public class SchedulingTest4 {
public static void main(String args[]) {
Thread[] t = new RunThread4[3];
t[0] = new RunThread4("☆");
t[0].start();
t[0].setPriority(1); // ☆ 가장 느린 우선 순위
t[1] = new RunThread4("◑");
t[1].start();
t[1].setPriority(5);
t[2] = new RunThread4("○");
t[2].start();
t[2].setPriority(10); // ○ 가장 빠른 우선 순위
/*
System.out.println("t[0]" + t[0].getPriority());
System.out.println("t[1]" + t[1].getPriority());
System.out.println("t[2]" + t[2].getPriority());
*/
}
}
[출처] [52] Thread, Thread Call Back 메소드, 우선순위|작성자 철
'안드로이드' 카테고리의 다른 글
Key events executed on key-up (0) | 2011.05.12 |
---|---|
Android에서 Home Key와 Power(Endcall) Key를 onKeyDown, onKeyUp으로 인식 할 수 없는 이유. (0) | 2011.05.12 |
Looper (0) | 2011.05.03 |
DIP를 px로 변환하기 (0) | 2011.04.21 |
[Service] onStartCommand (0) | 2011.04.06 |