栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用ThreadPoolExecutor,如何获取在线程池中运行的线程的名称?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用ThreadPoolExecutor,如何获取在线程池中运行的线程的名称?

创建一个重写beforeExecute方法的ThreadPoolExecutor。

private final ThreadPoolExecutor executor = new ThreadPoolExecutor (new ThreadPoolExecutor(10, 10,  0L, TimeUnit.MILLISECONDS,  new linkedBlockingQueue<Runnable>()){       protected void beforeExecute(Thread t, Runnable r) {          t.setName(deriveRunnableName(r));    }    protected void afterExecute(Runnable r, Throwable t) {          Thread.currentThread().setName("");    }    protected <V> RunnableFuture<V> newTaskFor(final Runnable runnable, V v) {         return new FutureTask<V>(runnable, v) {  public String toString() {     return runnable.toString();  }         };     };}

不确定会如何

derveRunnableName()
运作,也许
toString()

编辑:Thread.currentThread()实际上是在调用afterExecute的beforeExecute中设置的线程。您可以引用Thread.currentThread(),然后在afterExecute中设置名称。这在javadocs中有所说明

protected void afterExecute(Runnable r, Throwable t) { }

编辑
TPE会将Runnable封装在FutureTask中,因此要支持该

toString
方法,您可以重写
newTaskFor
并创建自己的封装的FutureTask。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/497921.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号