publicclassMain{publicstaticvoidmain(String[] argv)throwsException{Thread thread =newMyThread();
thread.start();if(thread.isMoove()){System.out.println("Thread has not finished");}else{System.out.println("Finished");}long delayMillis =5000;
thread.join(delayMillis);if(thread.isMoove()){System.out.println("thread has not finished");}else{System.out.println("Finished");}
thread.join();}}classMyThreadextendsThread{boolean stop =false;publicvoidrun(){while(true){if(stop){return;}}}}