Вопрос

My program start a thread whether some objects is created.

Foo() {
   t = new Thread(this);
   t.start();
}

And I am running some while loop inside my threads.

while(bool){
   // do something
}

I have one thread controlling the value of the boolean bool. But how can I terminate some of them before my other thread change the boolean value? I think setting t = null doesn't work. Is there any way to garbage collect the thread before it stop running?

Это было полезно?

Решение

Change the loop to

while (bool && !Thread.interrupted()) {
    // do something
}

When you want to stop the thread, call

t.interrupt();

Good luck.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top