Java获取当前所有线程

ThreadGroup group = Thread.currentThread().getThreadGroup();  
ThreadGroup topGroup = group;  
// 遍历线程组树,获取根线程组  
while (group != null) {  
    topGroup = group;  
    group = group.getParent();  
}  
// 激活的线程数加倍  
int estimatedSize = topGroup.activeCount() * 2;  
Thread[] slackList = new Thread[estimatedSize];  
// 获取根线程组的所有线程  
int actualSize = topGroup.enumerate(slackList);  
// copy into a list that is the exact size  
Thread[] list = new Thread[actualSize];  
System.arraycopy(slackList, 0, list, 0, actualSize);  
System.out.println("Thread list size == " + list.length);  
for (Thread thread : list) {  
    System.out.println(thread.getName());  
} 

原文地址:http://trinityblood.iteye.com/blog/1618181

作者:trinityblood

猜你喜欢

转载自blog.csdn.net/deronn/article/details/80247484