Java如何获取线程的线程组?
使用class的getThreadGroup()方法Thread获取线程所属的线程组。
package org.nhooo.example.lang;
public class GetThreadGroup {
public static void main(String[] args) {
//创建线程组
ThreadGroup group = new ThreadGroup("ThreadGroup");
ThreadGroup anotherGroup = new ThreadGroup(group, "AnotherGroup");
//创建线程并放入线程组
Thread t1 = new Thread(group, new FirstThread(), "Thread1");
Thread t2 = new Thread(anotherGroup, new FirstThread(), "Thread2");
//启动线程
t1.start();
t2.start();
//使用Thread类的getThreadGroup()方法获取对象
//ThreadGroup然后使用getName()方法获取名称
//线程组。
System.out.format("%s is a member of %s%n", t1.getName(),
t1.getThreadGroup().getName());
System.out.format("%s is a member of %s%n", t2.getName(),
t2.getThreadGroup().getName());
}
}
class FirstThread implements Runnable {
public void run() {
System.out.println("Start..");
}
}
热门推荐
10 对患者生日祝福语简短
11 结婚祝福语简短装备
12 周岁祝福语学生文案简短
13 订婚领证祝福语简短精辟
14 导师获奖祝福语大全简短
15 新婚购房祝福语简短精辟
16 牛年祝福语简短的爱人
17 送芒果的祝福语简短
18 送给学长毕业祝福语简短