我正在使用线程映射和关联的可运行对象来跟踪可运行对象。抛出这个背后的目的interruptedException
是,我想访问当前线程及其可运行对象。
Map<Thread, Runnable> myMap = new Map<Thread, Runnable>();
ExecutorService pool = Executors.newFixedThreadPool(5);
pool.execute(new myRunnable());
但是当我将runnable添加到线程池时,我想不出一种填充地图的方法。
如何将条目添加到包含 Thread 及其可运行对象的映射中?