ThreadGroup 类的 list() 方法用于显示线程组的信息。它仅用于调试。
用法
public void list()
返回
此方法不返回任何值。
示例
class List extends Thread
{
List(String threadname, ThreadGroup tgob)
{
super(tgob, threadname);
}
public void run()
{
for (int i = 0; i < 10; i++)
{
try
{
Thread.sleep(10);
}
catch (InterruptedException ex){
}
}
System.out.println(Thread.currentThread().getName() + " completed executing");
}
}
public class ThreadGroupListExp
{
public static void main(String arg[]) throws InterruptedException,
SecurityException, Exception
{
// creating the thread group
ThreadGroup tg1 = new ThreadGroup("Parent thread");
ThreadGroup tg2 = new ThreadGroup(tg1, "Child thread");
// creating a thread
List t1 = new List("Thread-1", tg1);
System.out.println(t1.getName() +" starts");
t1.start();
// creating an another thread
List t2 = new List("Thread-2", tg1);
System.out.println(t2.getName() +" starts");
t2.start();
// listing contents of parent ThreadGroup
System.out.println("\nListing parentThreadGroup:" + tg1.getName() + ":");
// prints information about this thread group to the standard output
tg1.list();
}
}
输出:
Thread-1 starts Thread-2 starts Listing parentThreadGroup:Parent thread: java.lang.ThreadGroup[name=Parent thread,maxpri=10] Thread[Thread-1,5,Parent thread] Thread[Thread-2,5,Parent thread] java.lang.ThreadGroup[name=Child thread,maxpri=10] Thread-1 completed executing Thread-2 completed executing
相关用法
- Java ThreadGroup list()用法及代码示例
- Java ThreadGroup enumerate()用法及代码示例
- Java ThreadGroup getMaxPriority()用法及代码示例
- Java ThreadGroup getParent()用法及代码示例
- Java ThreadGroup getName()用法及代码示例
- Java ThreadGroup parentOf()用法及代码示例
- Java ThreadGroup interrupt()用法及代码示例
- Java ThreadGroup suspend()用法及代码示例
- Java ThreadGroup setDaemon()用法及代码示例
- Java ThreadGroup isDaemon()用法及代码示例
- Java ThreadGroup checkAccess()用法及代码示例
- Java ThreadGroup resume()用法及代码示例
- Java ThreadGroup isDestroyed()用法及代码示例
- Java ThreadGroup toString()用法及代码示例
- Java ThreadGroup destroy()用法及代码示例
- Java ThreadGroup stop()用法及代码示例
- Java ThreadGroup activeCount()用法及代码示例
- Java ThreadGroup setMaxPriority()用法及代码示例
- Java ThreadGroup activeGroupCount()用法及代码示例
- Java Thread toString()用法及代码示例
注:本文由纯净天空筛选整理自 Java ThreadGroup list() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。