The source code to create a thread by extending the Thread class is given below. The given program is compiled and executed successfully.
// Java program to create a thread by extending
// the Thread class
public class Main extends Thread {
public static void main(String[] args) {
Main thrd = new Main();
thrd.start();
System.out.println("Outside the thread");
}
public void run() {
System.out.println("Thread Executed");
}
}
Output:
Outside the thread
Thread Executed
Explanation:
In the above program, we created a class Main by extending the Thread class and overriding the run() method. The Main class also contains a method main(). The main() method is an entry point for the program. Here, we created the object of the Main class and used the start() method to execute the thread.
Program/Source Code:
The source code to create a thread by extending the Thread class is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created a class Main by extending the Thread class and overriding the run() method. The Main class also contains a method main(). The main() method is an entry point for the program. Here, we created the object of the Main class and used the start() method to execute the thread.