This is good example of stopping thread. How to stop a java thread gracefully? - Thanks for gays :) but when I try to check this example I received infinite loop. Can you help me? This is my code
public class Num{
public void crash(ManualStopping t1) {
t1.stopMe();
}
public static void main(String [] args) {
Num num = new Num();
ManualStopping t1 = new ManualStopping();
t1.run();
System.out.println("Main thread");
num.crash(t1);
}
}
class ManualStopping extends Thread{
volatile boolean finished = false;
public void stopMe(){
finished = true;
}
public void run() {
while(!finished){
System.out.println("I'm alive");
}
}
}