共计 756 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中的 interrupt()
方法用于中断一个线程的执行。使用 interrupt()
方法会设置线程的中断状态为true
,但是并不会立即停止线程的执行,而是根据具体情况来决定是否中断线程的执行。
下面是使用 interrupt()
方法的一般步骤:
- 创建一个线程对象,并实现
Runnable
接口或是继承Thread
类,在run()
方法中编写需要执行的代码。 - 在需要中断线程的地方调用线程对象的
interrupt()
方法。 - 在线程的执行代码中,使用
Thread.interrupted()
或是Thread.currentThread().isInterrupted()
来判断线程的中断状态,并根据中断状态来决定是否终止线程的执行。
下面是一个简单的示例:
public class MyThread implements Runnable {public void run() {// 执行一些循环操作
while (!Thread.currentThread().isInterrupted()) {// 线程的具体执行代码
// ...
}
}
public static void main(String[] args) {Thread thread = new Thread(new MyThread());
thread.start();
// 中断线程的执行
thread.interrupt();}
}
在上面的示例中,MyThread
类实现了 Runnable
接口,并在 run()
方法中执行了一些循环操作。在循环中通过 Thread.currentThread().isInterrupted()
来判断线程的中断状态,如果中断状态为true
,则退出循环,终止线程的执行。
在 main()
方法中,通过 thread.interrupt()
来中断线程的执行。
丸趣 TV 网 – 提供最优质的资源集合!
正文完