Thread类常用的方法

/*

  • Thread()常用的方法:
  • 1.start():启动线程并执行相应的run()方法
  • 2.run():子线程要执行的代码放入run()方法中
  • 3.currentThread():调取当前的线程
  • 4.getName():获取线程的方法
  • 5.setName():设置此线程的方法
  • 6.yield():调用此方法的线程释放当前CPU的执行权
  • 7.join():在A线程中调用B线程的join()方法,表示:当执行到此方法,A线程停止执行,直至B线程执行完毕
  • 8.sleep(long l);显示的让当前线程睡眠一毫秒
  • 9.isAilve():判断当前线程是否还存活
  • 10.线程通信:wait() notify() notifyall()
  • 设置线程的优先级
  • getPriority()获取线程的优先值
  • setPriority() 改变线程的优先值
    */
class SubThread extends Thread{
	
	public void run() {
		for(int i = 1;i <= 100;i++) {
//			try {
//				sleep(0);
//			} catch (InterruptedException e) {
//				// TODO Auto-generated catch block
//				e.printStackTrace();
//			}
			
			System.out.println(Thread.currentThread().getName() + ":" +i);
		}
	}
}
public class TestThread {
	public static void main(String[] args) {
		
		SubThread st = new SubThread();
		
		st.setPriority(1);
		st.start();
		Thread.currentThread().setPriority(10);
		for(int i = 1;i <= 100;i++) {
			
			System.out.println(Thread.currentThread().getName() + ":" +i);
			if(i % 10 == 0) {
				Thread.currentThread().yield();
				}
//			if(i  == 20) {
//				try {
//					st.join();
//				} catch (InterruptedException e) {
//					// TODO Auto-generated catch block
//					e.printStackTrace();
//				}
//		}
			System.out.println(st.isAlive());
		}
	}
	

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值