共计 614 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,线程优先级可以通过 setPriority()
方法来设置。优先级是一个整数值,范围从 1 到 10,其中 1 是最低优先级,10 是最高优先级。默认情况下,所有线程都具有相同的优先级,即 5。
下面是一个示例代码,演示如何设置线程的优先级:
public class ThreadPriorityExample {public static void main(String[] args) {Thread thread1 = new MyThread("Thread 1");
Thread thread2 = new MyThread("Thread 2");
thread1.setPriority(8);
thread2.setPriority(3);
thread1.start();
thread2.start();}
}
class MyThread extends Thread {public MyThread(String name) {super(name);
}
@Override
public void run() {System.out.println(getName() + " is running.");
}
}
在上面的示例中,我们创建了两个线程 thread1
和thread2
,然后分别使用 setPriority()
方法设置它们的优先级为 8 和 3。然后,我们启动这两个线程。根据线程优先级的设置,高优先级的线程可能会更频繁地执行,但并不能保证一定会这样。
丸趣 TV 网 – 提供最优质的资源集合!
正文完