你知道如何中斷線程嗎?

1、已經廢棄的方法 stop() suspend() Thread thread=new Thread(); thread.stop();//強制中斷線程 thread.suspend();//掛起線程 這兩個方法被廢棄的緣由請看:爲何棄用stop和suspendjava 2、目前使用的方法 interrupt() Thread thread=new Thread();
相關文章
相關標籤/搜索