要查看Java線程池的線程數量,可以使用getPoolSize()
方法來獲取線程池中當前的線程數量。
以下是一個示例代碼:
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadPoolExecutor;
public class Main {
public static void main(String[] args) {
// 創建一個線程池
ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newFixedThreadPool(5);
// 打印線程池的線程數量
System.out.println("當前線程池中的線程數量:" + executor.getPoolSize());
// 關閉線程池
executor.shutdown();
}
}
上述代碼中,我們創建了一個FixedThreadPool線程池,并使用getPoolSize()
方法獲取線程池中的線程數量。最后,我們使用shutdown()
方法關閉線程池。
注意:getPoolSize()
方法返回的是線程池中當前正在執行任務的線程數量,并不包括那些已經完成任務但尚未被移除的線程。