25 Mayıs 2016 Çarşamba

ThreadGroup Sınıfı

constructor
Şöyle yaparız.
ThreadGroup tg = Thread.currentThread().getThreadGroup()
Şöyle yaparız.
ThreadGroup parent = new ThreadGroup("mygroup");
activeGroupCount metodu
Şöyle yaparız.
ThreadGroup[] t = new ThreadGroup[tg.activeGroupCount()];
enumerate metodu
Şöyle yaparız.
ThreadGroup[] t = new ThreadGroup[tg.activeGroupCount()];
tg.enumerate(t);
isDaemon metodu
Şöyle yaparız.
tg.isDaemon()
getName metodu
Şöyle yaparız.
tg.getName()
setDaemon metodu
Açıklaması şöyle
A daemon thread group is automatically destroyed when its last thread is stopped or its last thread group is destroyed.

Hiç yorum yok:

Yorum Gönder