码迷,mamicode.com
首页 > 编程语言 > 详细

java多线程设置优先级

时间:2014-10-18 14:03:11      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   java   for   2014   art   on   log   

package com.itbuluoge.mythread;

class SimpleThread extends Thread
{
	private int priority;
	public SimpleThread(int i)
	{
		priority=i;
	}
	public void run()
	{
		Thread.currentThread().setPriority(priority);
		for(int i=0;i<10000;i++)
		{
			try {
				Thread.sleep(100);
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			
			System.out.println(priority);
		}
	}
}
public class PriorityDemo {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		SimpleThread high=new SimpleThread(Thread.MAX_PRIORITY);
		SimpleThread low=new SimpleThread(Thread.MIN_PRIORITY);
		
		high.start();
		low.start();
	}

}

如上述代码所示,运行的两个线程,分别设置最高和最低的优先级,我们可以看看输出结果:

10
1
10
1
10
1
10
1
10
1
10
1
10
1
10
1
1
10
1
10
10
1
10
1
1


可以初步发现,优先级高的,得到的调度会更优先一些,但是也不是非常明显。

java多线程设置优先级

标签:blog   io   ar   java   for   2014   art   on   log   

原文地址:http://blog.csdn.net/itbuluoge/article/details/40210819

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!