Skip to main content

Creating and Running a Java Thread:

Ways to create a Thread:

You can create a Thread in two ways:

  • By extending the Thread class.
  • By implementing a Runnable Interface.

Thread class:

The Thread class provides constructors and methods to create and perform operations on a thread.

Runnable Interface:

Runnable Interfaces have only one method, named run(). The Runnable Interface should be performed by classes where their instances plan to be executed by a thread. public void run(): is used to perform the action for a Thread.

Starting a thread:

The start() method of a Thread class is used to start a newly created thread. It performs the following tasks:

  • A new thread starts(with their stack).
  • The Thread moves to the Runnable state from New state.
  • The run() method will run when the Thread gets a chance.

Java Thread Example by extending Thread class:

  1. class Multi extends Thread{  
  2. public void run(){  
  3. System.out.println("Extended Thread Class Example: thread is running...");  
  4. }  
  5. public static void main(String args[]){  
  6. Multi threadOne=new Multi();  
  7. threadOne.start();  
  8.  }  
  9. }  
Output:Extended Thread Class Example: thread is running...


Java Thread Example by implementing Runnable interface:

  1. class Multi implements Runnable{  
  2. public void run(){  
  3. System.out.println("Runnable Interface Example: thread is running...");  
  4. }  
  5.   
  6. public static void main(String args[]){  
  7. Multi multiOne=new Multi();  
  8. Thread threadOne =new Thread(multiOne);  
  9. threadOne.start();  
  10.  }  
  11. }  
Output:Runnable Interface Example: thread is running...

Popular posts from this blog

What happens if we don't override the run() method:

Consequences of not overriding the run() method: If we don’t override the run() method, the compiler will not flash any error, and it will execute the run() method of the Thread class that has been emptily implemented, So, there will be no output for this Thread. Below is an example of the method returning no output: public class Example extends Thread { public static void main(String[] args) { Thread thread = new Thread( new Example()); thread.start(); // will create a new thread and call thread class's run() method which has no implementation. } }

Interfaces - Need to know:

What is an Interface? An Interface is like a class in that it can have methods and variables. However, methods declared in an Interface are abstract by default, meaning they only contain the method signature, not the method body. Facts about Interfaces: Interfaces specify what the class must do and not how the class must do it. They are considered as the class blueprint. If a class implements an interface, the class must provide all the method bodies for the interface's functions. Otherwise, the class must be declared abstract. They are used to achieve total abstraction. An Interface can extend one or many Interfaces. A class can extend many Interfaces, but only one class. Nested Interfaces is when an Interface is declared inside another interface. It is also used to achieve loose coupling. Interfaces are used to implement abstraction.  Difference between Abstract Class and Interface: Differences between an Abstract class and an Interface include: An interface can have strictly abs...