thread 强制 java_(Java)线程的强制运行和线程的休眠

一、线程的强制运行

二、线程的休眠

一、线程的强制运行

在线程操作中,可以使用 join() 方法让一个线程强制运行,线程强制运行期间,其他线程无法运行,必须等待此线程完成之后才可以继续执行

class MyThread implements Runnable{//实现 Runnable 接口

public void run(){//覆写 Thread 类中的 run() 方法

for(int i=0;i<5;i++){

System.out.println(Thread.currentThread().getName()

+ "运行 --> " + i);//取得当前线程的名称

}

}

}

public class Root{

public static void main(String[] args) {

MyThread my = new MyThread();//定义 Runnable 子类对象

Thread t = new Thread(my,"线程");//实例化 Thread 对象

t.start();//启动线程

for(int i=0;i<6;i++){

if(i>2){

try {

t.join();//线程 t 进行强制运行

}catch (Exception e){}//需要进行异常处理

}

System.out.println("Main 线程运行 --> " + i);

}

}

}

二、线程的休眠

在程序中允许一个线程进行暂时的休眠,直接使用 Thread.sleep() 方法即可实现休眠

class MyThread implements Runnable{//实现 Runnable 接口

public void run(){//覆写 Thread 类中的 run() 方法

for(int i=0;i<5;i++){

try{

Thread.sleep(2);//线程休眠

}catch (Exception e){}

System.out.println(Thread.currentThread().getName()

+ "运行 --> " + i);//取得当前线程的名称

}

}

}

public class Root{

public static void main(String[] args) {

MyThread my = new MyThread();//定义 Runnable 子类对象

Thread t = new Thread(my,"线程");//实例化 Thread 对象

t.start();//启动线程

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值