3.线程基本信息

Posted 菜包包

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.线程基本信息相关的知识,希望对你有一定的参考价值。

 Thread.currentThread():static  当前线程

 方法: setName()    getName()  isAlive()

 优先级概率 非绝对的优先级

t1.setPriority(Thread.MAX_PRIORITY); t1.getPriority();

 * MAX_PRIORITY 10

 * NORM_PRIORITY 5

 * MIN_PRIORITY 1

/**
 * 描述:优先级 概率 非绝对的优先级
 * MAX_PRIORITY 10
 * MIN_PRIORITY 1
 * NORM_PRIORITY 5
 * @author cookie
 */
public class InfoDemo02 {
	public static void main(String[] args) throws InterruptedException {
		MyThread it1= new MyThread();
		Thread p1 = new Thread(it1,"挨踢1");
		MyThread it2= new MyThread();
		Thread p2 = new Thread(it2,"挨踢2");
		p1.setPriority(Thread.MAX_PRIORITY);//设置优先级
		p2.setPriority(Thread.MIN_PRIORITY);//设置优先级
		p1.start();
		p2.start();
		Thread.sleep(100);
		it1.stop();
		it2.stop();
		
	}
}
class MyThread implements Runnable {
	private int num = 0;
	private boolean flag = true;
	@Override
	public void run() {
		while(flag){
			System.out.println(Thread.currentThread().getName()+"--->"+ num++);
		}
	}
	public void stop(){
		this.flag = false;
	}
}

  

以上是关于3.线程基本信息的主要内容,如果未能解决你的问题,请参考以下文章

多个用户访问同一段代码

线程操作API

为啥基于锁的程序不能组成正确的线程安全片段?

newCacheThreadPool()newFixedThreadPool()newScheduledThreadPool()newSingleThreadExecutor()自定义线程池(代码片段

为啥片段类应该是公开的?

在片段中添加 Viewpager