awaitTermination() shutdown()

newFixedThreadPool

创建一个固定大小的线程池。

shutdown():用于关闭启动线程,如果不调用该语句,jvm不会关闭。

awaitTermination():用于等待子线程结束,再继续执行下面的代码。该例中我设置一直等着子线程结束。

 

 

Java代码 复制代码  收藏代码
  1. public class Test {   
  2.   
  3.     public static void main(String[] args) throws IOException, InterruptedException {   
  4.         ExecutorService service = Executors.newFixedThreadPool(2);   
  5.         for (int i = 0; i < 4; i++) {   
  6.             Runnable run = new Runnable() {   
  7.                 @Override  
  8.                 public void run() {   
  9.                     System.out.println("thread start");   
  10.                 }   
  11.             };   
  12.             service.execute(run);   
  13.         }   
  14.         service.shutdown();   
  15.         service.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS);   
  16.         System.out.println("all thread complete");   
  17.     }   
  18. }  
public class Test {

	public static void main(String[] args) throws IOException, InterruptedException {
		ExecutorService service = Executors.newFixedThreadPool(2);
		for (int i = 0; i < 4; i++) {
			Runnable run = new Runnable() {
				@Override
				public void run() {
					System.out.println("thread start");
				}
			};
			service.execute(run);
		}
		service.shutdown();
		service.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS);
		System.out.println("all thread complete");
	}
}

 

 

 

 输出:
thread start
thread start
thread start
thread start
all thread complete
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值