ThreadGroup:
线程组就是由线程组成的管理线程的类
Thread.currentThread().getThreadGroup().getName();
currentThread():取得当前线程。
getThreadGroup():取得当前线程所在的组。
getName():取得组的名称。
定义一个线程组,通过以下代码可以实现。
ThreadGroup group=new ThreadGroup("group");
Thread thread=new Thread(group,"the first thread of group");
ThreadGroup类中的某些方法,可以对线程组中的线程产生作用。
例如,setMaxPriority()方法可以设定线程组中的所有线程拥有最大的优先权。
线程组也可以包含其他线程组
ThreadGroup(ThreadGroup parent, String name) // 创建一个新线程组。