jdk自带4种多线程创建方式

package cm.pool;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;

public class test {

	public static Integer num = 20;

	public static Integer i = 0;

	public static void main(String[] args) {

		/**
		 * 四种jdk中多线程的创建
		 */
		/*
		 * Executors.newSingleThreadExecutor().shutdown();
		 * Executors.newCachedThreadPool(); 
		 * Executors.newScheduledThreadPool(1);
		 * Executors.newFixedThreadPool(2);
		 */

		final CountDownLatch countDownLatch = new CountDownLatch(2);
		// java内置线程池
		ExecutorService executorService = Executors.newFixedThreadPool(2);
		executorService.submit(new Runnable() {
			@Override
			public synchronized void run() {
				while (test.num > 0) {
					test.num--;
					test.i++;
					System.out.println(Thread.currentThread().getName() + ":" + test.num);
				}
				countDownLatch.countDown();
			}
		});

		executorService.submit(new Runnable() {
			@Override
			public synchronized void run() {
				while (test.num > 0) {
					test.num--;
					test.i++;
					System.out.println(Thread.currentThread().getName() + ":" + test.num);
				}
				countDownLatch.countDown();
			}
		});
		executorService.submit(new Runnable() {
			@Override
			public void run() {
				try {
					countDownLatch.await();
					System.out.println("统计线程1和线程2的执行次数:" + test.i);
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
		});
		executorService.shutdown();

		Temp temp = new Temp();
		final ScheduledExecutorService scheduled = Executors.newScheduledThreadPool(10);
		/**
		 * temp:线程任务 
		 * 5:初始化时间 
		 * 1:5秒后每1秒执行一次线程任务 TimeUnit.SECONDS:单位
		 */
		ScheduledFuture<?> scFuture = scheduled.scheduleWithFixedDelay(/**temp*/new Runnable() {
			int r=0;
			@Override
			public synchronized void run() {
				if(r==10){
					scheduled.shutdown();
				}else{
					r++;
					System.out.println("10个线程计数:"+Thread.currentThread().getName()+":"+r);
				}
			}
		}, 5, 1, TimeUnit.SECONDS);
	}
}

运行结果如下:

pool-1-thread-1:19
pool-1-thread-1:18
pool-1-thread-1:17
pool-1-thread-1:16
pool-1-thread-1:15
pool-1-thread-1:14
pool-1-thread-1:13
pool-1-thread-1:12
pool-1-thread-1:11
pool-1-thread-1:10
pool-1-thread-1:9
pool-1-thread-1:7
pool-1-thread-1:6
pool-1-thread-1:5
pool-1-thread-1:4
pool-1-thread-1:3
pool-1-thread-1:2
pool-1-thread-1:1
pool-1-thread-1:0
pool-1-thread-2:6
统计线程1和线程2的执行次数:20
10个线程计数:pool-2-thread-1:1
10个线程计数:pool-2-thread-1:2
10个线程计数:pool-2-thread-2:3
10个线程计数:pool-2-thread-1:4
10个线程计数:pool-2-thread-3:5
10个线程计数:pool-2-thread-2:6
10个线程计数:pool-2-thread-4:7
10个线程计数:pool-2-thread-1:8
10个线程计数:pool-2-thread-5:9
10个线程计数:pool-2-thread-3:10

1.newFixedThreadPool的使用。

2.开启了两个线程池pool1、pool2

3.通过countDownLatch保证递减结果完成之后输出。

4.newScheduledThreadPool的使用

转载于:https://my.oschina.net/2286252881/blog/863333

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值