博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java多线程-线程池
阅读量:5061 次
发布时间:2019-06-12

本文共 1963 字,大约阅读时间需要 6 分钟。

原文链接:

对newCachedThreadPool回收线程的证明

public class test{    public static void main(String[] args)    {        ExecutorService cachedThreadPool = Executors.newCachedThreadPool();        for (int i = 0; i < 10; i++) {            final int index = i;//            try {//                Thread.sleep(index * 1000);//            } catch (InterruptedException e) {//                e.printStackTrace();//            }                     cachedThreadPool.execute(new Runnable() {                         @Override                public void run() {                    System.out.println(index+" "+Thread.currentThread().getName()+" "+Thread.currentThread().hashCode());                }            });        }    }}

结果只是产生九个不同的线程

2 pool-1-thread-3 1176331429

5 pool-1-thread-6 573401305
3 pool-1-thread-4 227309514
1 pool-1-thread-2 407159979
6 pool-1-thread-7 860495101
7 pool-1-thread-8 185084417
0 pool-1-thread-1 1408899434
4 pool-1-thread-5 775593137
8 pool-1-thread-9 598837007
9 pool-1-thread-2 407159979

二次测试,只有5个

0 pool-1-thread-1 2087961100

2 pool-1-thread-3 1794419219
1 pool-1-thread-2 2016711653
4 pool-1-thread-1 2087961100
6 pool-1-thread-3 1794419219
5 pool-1-thread-2 2016711653
9 pool-1-thread-3 1794419219
8 pool-1-thread-2 2016711653
7 pool-1-thread-5 1444382773
3 pool-1-thread-4 847094661

三次测试,有6个

0 pool-1-thread-1 461277103

2 pool-1-thread-3 2016711653
4 pool-1-thread-5 847094661
3 pool-1-thread-4 1794419219
6 pool-1-thread-4 1794419219
7 pool-1-thread-5 847094661
8 pool-1-thread-1 461277103
5 pool-1-thread-3 2016711653
1 pool-1-thread-2 2087961100
9 pool-1-thread-6 1287333624

 

如果把中间休眠的注释去掉,效果更加明显,只有一个线程

0 pool-1-thread-1 2016711653

1 pool-1-thread-1 2016711653
2 pool-1-thread-1 2016711653
3 pool-1-thread-1 2016711653
4 pool-1-thread-1 2016711653
5 pool-1-thread-1 2016711653
6 pool-1-thread-1 2016711653
7 pool-1-thread-1 2016711653
8 pool-1-thread-1 2016711653
9 pool-1-thread-1 2016711653

 

转载于:https://www.cnblogs.com/kumu/p/6639152.html

你可能感兴趣的文章
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>
「破解」Xposed强
查看>>
src与href的区别
查看>>
ABAP工作区,内表,标题行的定义和区别
查看>>
《xxx重大需求征集系统的》可用性和可修改性战术分析
查看>>
Python 中 创建类方法为什么要加self
查看>>
关于indexOf的使用
查看>>
【转】JS生成 UUID的四种方法
查看>>
英语单词
查看>>
centos6.8下安装matlab2009(图片转帖)
查看>>
Mongo自动备份
查看>>