标签:nbsp oid thread priority read 启动 获得 获取 优先级
线程的优先级越高,获得CPU的时间越长,注意:不同优先级的线程并发,低优先级的线程仅仅是获取CPU的时间较短而已。
优先级1--10
默认优先级是5 Thread.NORM_PRIORITY
最低优先级是1 Thread.MIN_PRIORITY
最高优先级是10 Thread.MAX_PRIORITY
int getPriority(); 获取优先级
void setPriority(int ); 设置优先级
设置优先级步骤:
(1) 创建线程
(2)设置优先级
(3)启动进程
标签:nbsp oid thread priority read 启动 获得 获取 优先级
原文地址:http://www.cnblogs.com/joyeehe/p/7867828.html