below code executable at runtime when thread is interrupted?()::work::PART B::isInterrupted():" + Thread.currentThread().isInterrupted()); }}
我运行这个线程实例,并在使用Thread.sleep()方法一段时间后从主线程中断线程。to make the below
我需要编写一个扩展Thread类的应用程序。我的类在实例化时接受一个整数(即100)。(MyThread myt = new MyThread(100); )此整数将是该类循环和打印消息的次数。我应该使用main方法来测试这个类。在主要我将启动两个线程,一个线程与150和一个线程与200。对于这段代码,我不需要使用sleep()方法。 我已经写了一段代码,但是我很困惑。我还应该实现此代码,将此类更改为使用Runnable接口而不是Thread类 public class MyThread extends