合适帽子

文章
4
资源
0
加入时间
2年10月17天

Java线程设置优先级

1.Java可以通过设置优先级,来决定线程的运行优先级2.通过 setPriority(int newPriority)来设置优先级,其中函数里面写为Thread.NORM_PRIORITY + n.最高级为5,若超过,则会报IllegalArgumentException 异常代码:public class TestPriority {public static void main(St...