เธรดสามารถส่งการขัดจังหวะโดยเรียกใช้การขัดจังหวะบน เธรด วัตถุสำหรับเธรดที่จะถูกขัดจังหวะ ซึ่งหมายความว่าการหยุดชะงักของเธรดเกิดจากการเรียกเธรดอื่นที่เรียก interrupt() วิธีการ
คลาสเธรดมีวิธีการขัดจังหวะสามวิธี
- โมฆะอินเตอร์รัปต์() - ขัดจังหวะเธรด
- บูลีนแบบคงที่ถูกขัดจังหวะ () - ทดสอบว่าเธรดปัจจุบันถูกขัดจังหวะหรือไม่
- บูลีน isInterrupted() - ทดสอบว่าเธรดถูกขัดจังหวะหรือไม่
ตัวอย่าง
public class ThreadInterruptTest {
public static void main(String[] args) {
System.out.println("Thread main started");
final Task task = new Task();
final Thread thread = new Thread(task);
thread.start();
thread.interrupt(); // calling interrupt() method
System.out.println("Main Thread finished");
}
}
class Task implements Runnable {
@Override
public void run() {
for (int i = 0; i < 5; i++) {
System.out.println("[" + Thread.currentThread().getName() + "] Message " + i);
if(Thread.interrupted()) {
System.out.println("This thread was interruped by someone calling this Thread.interrupt()");
System.out.println("Cancelling task running in thread " + Thread.currentThread().getName());
System.out.println("After Thread.interrupted() call, JVM reset the interrupted value to: " + Thread.interrupted());
break;
}
}
}
} ผลลัพธ์
Thread main started Main Thread finished [Thread-0] Message 0 This thread was interruped by someone calling this Thread.interrupt() Cancelling task running in thread Thread-0 After Thread.interrupted() call, JVM reset the interrupted value to: false