BAEL4235 FindNumberOfThread class

This commit is contained in:
dev-chirag
2021-06-15 23:51:57 +05:30
parent 04ff8e9b9d
commit 5b50a93d0b

View File

@@ -6,7 +6,9 @@ public class FindNumberOfThreads {
public static void main(String[] args) {
System.out.println("Number of threads " + Thread.activeCount());
System.out.println("Current Thread Group - " + Thread.currentThread().getThreadGroup().getName());
System.out.println("Total Number of threads " + ManagementFactory.getThreadMXBean().getThreadCount());
System.out.println("Current Thread Group - "
+ Thread.currentThread().getThreadGroup().getName());
System.out.println("Total Number of threads "
+ ManagementFactory.getThreadMXBean().getThreadCount());
}
}