for(int i = 0; i < processingDsgIDListSize; i++){
int id = iterGroupId.next();
DsgGrasperThread dgt = new DsgGrasperThread(new ThreadGroup(id + ""), this, id, System.currentTimeMillis());
processingDsgList.addLast(dgt);
dgt.start();
// System.err.println("------------------------------------"+dgt.getThreadGroup().activeCount());
System.err.println(dgt);
}想问下高手,上面这段代码中,我在调试的过程中出现一个不解的问题,dgt这个线程启动之后,它的ThreadGroup就为null了,之前都一直有值。因为我想在后面用到dgt.getThreadGroup(),始终都得不到,不知道是什么原因?非常谢谢...