线程强制运行

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

范例:线程的强制运行

package test1;

import javax.xml.ws.soap.MTOM;

class MyThread5 implements Runnable {
	public void run() {
		for (int i = 0; i < 3; i++) {// 覆写run方法
			System.out.println(Thread.currentThread().getName() + "运行,i=" + i);// 取得当前线程的名称
		}
	}
}

public class ThreadDemoName01 {
	public static void main(String[] args) {
		MyThread5 my = new MyThread5();
		Thread t = new Thread(my, "线程");
		System.out.println("线程开始执行之前-->" + t.isAlive());// 判断是否启动
		t.start();
		System.out.println("线程开始之后-->" + t.isAlive());// 判断是否启动

		for (int i = 0; i < 50; i++) {
			if (i > 10) {
				try {
					t.join();// 线程T进程强制运行
				} catch (Exception e) {
				}
			}
			System.out.println("main运行-->" + i);
		}
		System.out.println("代码执行之后-->" + t.isAlive());
	}
}

 范例: 线程休眠

package test1;

import javax.xml.ws.soap.MTOM;

class MyThread5 implements Runnable {
	public void run() {
		for (int i = 0; i < 3; i++) {// 覆写run方法
			System.out.println(Thread.currentThread().getName() + "运行,i=" + i);// 取得当前线程的名称
		}
	}
}

public class ThreadDemoName01 {
	public static void main(String[] args) {
		MyThread5 my = new MyThread5();
		Thread t = new Thread(my, "线程");
		System.out.println("线程开始执行之前-->" + t.isAlive());// 判断是否启动
		t.start();
		System.out.println("线程开始之后-->" + t.isAlive());// 判断是否启动

		for (int i = 0; i < 50; i++) {
			if (i > 10) {
				try {
					Thread.sleep(500);// 线程休眠
				} catch (Exception e) {
				}
			}
			System.out.println("main运行-->" + i);
		}
		System.out.println("代码执行之后-->" + t.isAlive());
	}
}

中断线程 使用interrupt()方法中断运行状态 

后台线程:使用setDaemon()方法即可 ,例如:t.setDaemon(true);

 

 

转载于:https://www.cnblogs.com/bokun-wang/archive/2011/12/09/2281708.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值