To implement multithreading, Java defines two ways by which a thread can be created.
The easiest way to create a thread is to create a class that implements the runnable interface. After implementing runnable interface, the class needs to implement the run()
method.
public void run()
run()
method terminates.run()
method.run()
method can call other methods, can use other classes and declare variables just like any other normal method.class MyThread implements Runnable
{
public void run()
{
System.out.println("concurrent thread started running..");
}
}
class MyThreadDemo
{
public static void main(String args[])
{
MyThread mt = new MyThread();
Thread t = new Thread(mt);
t.start();
}
}
concurrent thread started running..
To call the run()
method, start()
method is used. On calling start(), a new stack is provided to the thread and run() method is called to introduce the new thread into the program.
Note: If you are implementing Runnable interface in your class, then you need to explicitly create a Thread class object and need to pass the Runnable interface implemented class object as a parameter in its constructor.
This is another way to create a thread by a new class that extends Thread class and create an instance of that class. The extending class must override run()
method which is the entry point of new thread.
class MyThread extends Thread
{
public void run()
{
System.out.println("concurrent thread started running..");
}
}
classMyThreadDemo
{
public static void main(String args[])
{
MyThread mt = new MyThread();
mt.start();
}
}
concurrent thread started running..
In this case also, we must override the run()
and then use the start()
method to run the thread. Also, when you create MyThread class object, Thread class constructor will also be invoked, as it is the super class, hence MyThread class object acts as Thread class object.
run()
method directly without using start()
method?In above program if we directly call run()
method, without using start()
method,
public static void main(String args[])
{
MyThread mt = new MyThread();
mt.run();
}
Doing so, the thread won't be allocated a new call stack, and it will start running in the current call stack, that is the call stack of the main thread. Hence Multithreading won't be there.
No, a thread cannot be started twice. If you try to do so, IllegalThreadStateException will be thrown.
public static void main(String args[])
{
MyThread mt = new MyThread();
mt.start();
mt.start(); //Exception thrown
}
When a thread is in running state, and you try to start it again, or any method try to invoke that thread again using start() method, exception is thrown.
In Java, is used for reusing the threads which were created previously for executing the current task. It also provides the solution if any problem occurs in the thread cycle or in resource thrashing. In Java Thread pool a group of threads are created, one thread is selected and assigned job and after completion of job, it is sent back in the group.
1. newFixedThreadPool(int)
2. newCachedThreadPool()
3. newSingleThreadExecutor()
1. create a runnable object to execute.
2. using executors create an executor pool
3. Now Pass the object to the executor pool
4. At last shutdown the executor pool.
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
class WorkerThread implements Runnable
{
private String message;
public WorkerThread(String a)
{
this.message=a;
}
public void run()
{
System.out.println(Thread.currentThread().getName()+" (Start) message = "+message);
processmessage();
System.out.println(Thread.currentThread().getName()+" (End)");
}
private void processmessage()
{
try
{
Thread.sleep(5000);
}
catch (InterruptedException e)
{
System.out.println(e);
}
}
}
public class ThreadPoolDemo1
{
public static void main(String[] args)
{
ExecutorService executor = Executors.newFixedThreadPool(5);
for (int i = 0; i < 10; i++)
{
Runnable obj = new WorkerThread("" + i);
executor.execute(obj);
}
executor.shutdown();
while (!executor.isTerminated())
{
}
System.out.println("********All threads are Finished********");
}
}