Q:

Java program to interrupt the execution of a thread

belongs to collection: Java Threading Programs

0

Java program to interrupt the execution of a thread

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to interrupt the execution of a thread is given below. The given program is compiled and executed successfully.

// Java program to interrupt the execution 
// of a thread

class MyThread implements Runnable {
  public void run() {
    try {
      Thread.sleep(1000);
      System.out.println("Includehelp");
    } catch (Exception e) {
      System.out.println("Exception: " + e);
    }
    System.out.println("Thread is running");
  }
}

public class Main {
  public static void main(String[] args) {
    try {
      Thread t = new Thread(new MyThread());

      t.start();

      t.interrupt();

    } catch (Exception e) {

    }
  }
}

Output:

Exception: java.lang.InterruptedException: sleep interrupted
Thread is running

Explanation:

In the above program, we created two classes MyThread and Main. We created MyThread class by implementing the Runnable interface. In the run() method, we handled exceptions using try, catch blocks.

The Main class contains a main() method. The main() method is the entry point for the program. Here, we created a thread. Then we started and interrupted the thread using the start()interrupt() methods respectively.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java program to create a group of a thread... >>
<< Java program to demonstrate the Thread.join() meth...