BAEL4235 FindNumberOfThread class
This commit is contained in:
parent
d5f1f148e3
commit
f656c61903
|
@ -0,0 +1,12 @@
|
|||
package com.baeldung.concurrent.threads.number;
|
||||
|
||||
import java.lang.management.ManagementFactory;
|
||||
|
||||
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());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue