赞
踩
android开发过程中,线程优先级存在两种设置方法,一是Java的设置方法,二是android提供的设置方法。
Thread thread1 = new Thread();
thread1.setPriority(10);
内部调用的也是底层的方法
public final void setPriority(int newPriority) {
ThreadGroup g;
checkAccess();
if (newPriority > MAX_PRIORITY || newPriority < MIN_PRIORITY) {
// Android-changed: Improve exception message when the new priority is out of bounds.
throw
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。