In this Multithreading tutorial in Java, we will learn:
What is Single Thread
What is Multithreading in Java?
Thread Life Cycle in Java
Java Thread Synchronization
Java Multithreading Example
What is Single Thread?
A single thread in Java is basically a lightweight and the smallest unit of processing. Java uses threads by using a “Thread Class”. There are two types of thread – user thread and daemon thread (daemon threads are used when we want to clean the application and are used in the background). When an application first begins, user thread is created. Post that, we can create many user threads and daemon threads. Single Thread Example: Advantages of single thread:
Reduces overhead in the application as single thread execute in the system Also, it reduces the maintenance cost of the application.
Example of Multi thread: Advantages of multithread:
The users are not blocked because threads are independent, and we can perform multiple operations at times As such the threads are independent, the other threads won’t get affected if one thread meets an exception.
Thread Life Cycle in Java
The Lifecycle of a thread:
There are various stages of life cycle of thread as shown in above diagram:
New Runnable Running Waiting Dead
New: In this phase, the thread is created using class “Thread class”.It remains in this state till the program starts the thread. It is also known as born thread. Runnable: In this page, the instance of the thread is invoked with a start method. The thread control is given to scheduler to finish the execution. It depends on the scheduler, whether to run the thread. Running: When the thread starts executing, then the state is changed to “running” state. The scheduler selects one thread from the thread pool, and it starts executing in the application. Waiting: This is the state when a thread has to wait. As there multiple threads are running in the application, there is a need for synchronization between threads. Hence, one thread has to wait, till the other thread gets executed. Therefore, this state is referred as waiting state. Dead: This is the state when the thread is terminated. The thread is in running state and as soon as it completed processing it is in “dead state”.
Example: In this multithreading program in Java example, we are going to create a thread and explore built-in methods available for threads. Explanation of the code:
Code Line 2: We are creating a class “thread_Example1” which is implementing the Runnable interface (it should be implemented by any class whose instances are intended to be executed by the thread.) Code Line 4: It overrides run method of the runnable interface as it is mandatory to override that method Code Line 6: Here we have defined the main method in which we will start the execution of the thread. Code Line 7: Here we are creating a new thread name as “guruthread1” by instantiating a new class of thread. Code Line 8: we will use “start” method of the thread using “guruthread1” instance. Here the thread will start executing. Code Line 10: Here we are using the “sleep” method of the thread using “guruthread1” instance. Hence, the thread will sleep for 1000 milliseconds. Code 9-14: Here we have put sleep method in try catch block as there is checked exception which occurs i.e. Interrupted exception. Code Line 15: Here we are setting the priority of the thread to 1 from whichever priority it was Code Line 16: Here we are getting the priority of the thread using getPriority() Code Line 17: Here we are printing the value fetched from getPriority Code Line 18: Here we are writing a text that thread is running.
When you execute the above code, you get the following output:
Output: 5 is the Thread priority, and Thread Running is the text which is the output of our code.
Java Thread Synchronization
In multithreading, there is the asynchronous behavior of the programs. If one thread is writing some data and another thread which is reading data at the same time, might create inconsistency in the application. When there is a need to access the shared resources by two or more threads, then synchronization approach is utilized. Java has provided synchronized methods to implement synchronized behavior. In this approach, once the thread reaches inside the synchronized block, then no other thread can call that method on the same object. All threads have to wait till that thread finishes the synchronized block and comes out of that. In this way, the synchronization helps in a multithreaded application. One thread has to wait till other thread finishes its execution only then the other threads are allowed for execution. It can be written in the following form:
Java Multithreading Example
In this multithreading Java example, we will take two threads and fetch the names of the thread. Example1: Explanation of the code:
Code Line 3: We have taken a class “GuruThread1” which implements Runnable (it should be implemented by any class whose instances are intended to be executed by the thread.) Code Line 8: This is the main method of the class Code Line 9: Here we are instantiating the Thread class and creating an instance named as “guruThread1” and creating a thread. Code Line 10: Here we are instantiating the Thread class and creating an instance named a “guruThread2” and creating a thread. Code Line 11: We are starting the thread i.e. guruThread1. Code Line 12: We are starting the thread i.e. guruThread2. Code Line 13: Outputting the text as “Thread names are following:” Code Line 14: Getting the name of thread 1 using method getName() of the thread class. Code Line 15: Getting the name of thread 2 using method getName() of the thread class.
When you execute the above code, you get the following output:
Output: Thread names are being outputted here as
Guru1 Guru2
Example 2: In this multithreading in Java example, we will learn about overriding methods run() and start() method of a runnable interface and create two threads of that class and run them accordingly. Also, we are taking two classes,
One which will implement the runnable interface and Another one which will have the main method and execute accordingly.
Explanation of the code:
Code Line 2: Here we are taking a class “GuruThread2” which will have the main method in it. Code Line 4: Here we are taking a main method of the class. Code Line 6-7: Here we are creating an instance of class GuruThread3 (which is created in below lines of the code) as “threadguru1” and we are starting the thread. Code Line 8-9: Here we are creating another instance of class GuruThread3 (which is created in below lines of the code) as “threadguru2” and we are starting the thread. Code Line 11: Here we are creating a class “GuruThread3” which is implementing the runnable interface (it should be implemented by any class whose instances are intended to be executed by the thread.) Code Line 13-14: we are taking two class variables from which one is of the type thread class and other of the string class. Code Line 15-18: we are overriding the GuruThread3 constructor, which takes one argument as string type (which is threads name) that gets assigned to class variable guruname and hence the name of the thread is stored. Code Line 20: Here we are overriding the run() method of the runnable interface. Code Line 21: We are outputting the thread name using println statement. Code Line 22-31: Here we are using a for loop with counter initialized to 0, and it should not be less than 4 (we can take any number hence here loop will run 4 times) and incrementing the counter. We are printing the thread name and also making the thread sleep for 1000 milliseconds within a try-catch block as sleep method raised checked exception. Code Line 33: Here we are overriding start method of the runnable interface. Code Line 35: We are outputting the text “Thread started”. Code Line 36-40: Here we are taking an if condition to check whether class variable guruthread has value in it or no. If its null then we are creating an instance using thread class which takes the name as a parameter (value for which was assigned in the constructor). After which the thread is started using start() method.
When you execute the above code you get the following output:
Output: There are two threads hence, we get two times message “Thread started”. We get the names of the thread as we have outputted them. It goes into for loop where we are printing the counter and thread name and counter starts with 0. The loop executes three times and in between the thread is slept for 1000 milliseconds. Hence, first, we get guru1 then guru2 then again guru2 because the thread sleeps here for 1000 milliseconds and then next guru1 and again guru1, thread sleeps for 1000 milliseconds, so we get guru2 and then guru1.
Summary
In this tutorial, we saw multithreaded applications in Java and how to use single and multi thread in Java.
Explain multithreading in Java: in multithreading, users are not blocked as threads are independent and can perform multiple operations at time Various stages of life cycle of the thread are,
New Runnable Running Waiting Dead
We also learned about synchronization between threads, which help the application to run smoothly. Multithreaded programming in Java makes many more application tasks easier.