Java --Thread(1)

/**
 * Thread类的常用方法:
 * 
 * 1.start():启动线程并执行相应的run()方法
 * 2.run():子线程要执行的代码,放入run()方法中
 * 3.currentThread():静态的、调取当前的线程
 * 4.getName():获取此线程的名字
 * 5.setName():设置此线程的名字
 * 6.yield():调用此方法的线程会释放当前CPU的执行权
 * 7.join():在A线程中调用B线程的join()方法,表示当执行到此方法,A线程停止执行,
 * 直至B线程执行完毕,A线程再接着join()之后的代码执行
 * 8.isAlive():判断当前线程是否还存活
 * 9.sleep(long 1):显式地让当前线程睡眠1毫秒
 * 10.线程通信:wait() notify() notifyAll()
 * 
 * 设置线程的优先级(线程的调度)
 * getPriority():返回线程优先值
 * setPriority(int newPriority):改变线程的优先级
 * 
 */
public class Test_Thread1 {
public static void main(String[] args) {
SubThread1 st = new SubThread1();

st.setName("子线程=");
st.setPriority(Thread.MAX_PRIORITY);
st.start();

Thread.currentThread().setName("主线程=====");
for (int i = 1; i < 100; i++) {
System.out.println(Thread.currentThread().getName() + ":" 
+ Thread.currentThread().getPriority() + ":" + i); 
// if(i % 10 == 0){
// Thread.currentThread().yield();
// }
// if(i == 20){
// try {
// st.join();
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
// }

}
System.out.println(st.isAlive());
}


}
class SubThread1 extends Thread{
public void run(){
for(int i = 1; i <= 100 ; i++){
// try {
// Thread.currentThread().sleep(100);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
System.out.println(Thread.currentThread().getName() + ":" 
+ Thread.currentThread().getPriority() + ":" + i); //1-100之间自然数输出

}
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值