When we run a real-world application, we use good processors for faster execution. But, only processor speed can’t make your application run fast. One of the great ways to create a performance efficient application is use utilize multithreading.
Multithreading is a programming concept in which the application can create a small unit of tasks to execute in parallel. If you are working on a computer, it runs multiple applications and allocates processing power to them. A simple program runs in sequence and the code statements execute one by one. This is a single-threaded application. But, if the programming language supports creating multiple threads and passes them to the operating system to run in parallel, it’s called multithreading.
When we talk about multithreading, we don’t care if the machine has a 2-core processor or a 16-core processor. Our work is to create a multithreaded application and let the OS handle the allocation and execution part. In short, multithreading has nothing to do with multiprocessing.
Java has great support for multithreaded applications. Java supports multithreading through Thread class. Java Thread allows us to create a lightweight process that executes some tasks. We can create multiple threads in our program and start them. Java runtime will take care of creating machine-level instructions and work with OS to execute them in parallel.
There are two types of threads in an application - user thread and daemon thread. When we start an application, the main is the first user thread created. We can create multiple user threads as well as daemon threads. When all the user threads are executed, JVM terminates the program.
When we create a thread, we can assign its priority. We can set different priorities to different Threads but it doesn’t guarantee that a higher priority thread will execute first than a lower priority thread. The thread scheduler is the part of Operating System implementation and when a Thread is started, its execution is controlled by Thread Scheduler and JVM doesn’t have any control over its execution.
We can create Threads by either implementing Runnable interface or by extending Thread Class.
Thread t = new Thread(new Runnable(){
@Override
public void run() {
}
});
Above is a one-line statement to create a new Thread. Here we are creating a Runnable as an anonymous class. If you are familiar with lambda expressions, we can create a Thread with much shorter code.
Runnable runnable = () -> System.out.println("Hello");
Once we have created a Thread, we have to start its execution by calling the start() method.
runnable.start();
I have written a lot of posts explaining the concepts of multithreading in Java. You can go through these in sequence to learn everything about multithreading, its real-life usage, thread lifecycle, thread pool, etc.
This is the first post about the Thread class and Runnable interface. You will also learn about Process and Thread. What is the difference between Thread and Process? Benefits of using Threads and how we can create Threads using Runnable interface and Thread class. This post also compares the Runnable interface with the Thread class.
Java Thread sleep is used to pause the execution of the current thread. We will use Thread sleep extensively in future posts, so it’s good to know how it works and is it accurate or not?
Sometimes we need to wait for other threads to finish their execution before we can proceed. We can achieve this using the Thread join method, learn how it works and when we should use it.
Understanding different states of thread are important. Learn how a thread changes its state and how the operating system thread scheduler changes the state of a thread.
Java Object class contains three methods to communicate the lock status of a resource. Learn with example usage of these Object class methods in a simple Wait-Notify implementation.
We know that Threads share Object resources, which can lead to data corruption because these operations are not atomic. Learn how we can achieve thread-safety in java using different methods. Read this post to learn about the correct usage of synchronization, synchronized methods, and synchronized blocks.
JVM creates the first thread using the main method. This post explains some common exceptions we see in daily life and what is the root cause of them and how to fix them.
In this article, you will learn basic concepts of creating a Singleton class. What are thread safety issues with different implementations? How we can achieve thread-safety in Singleton class.
A simple article explaining daemon threads and how we can create daemon threads in java.
We know that threads share Object’s variables but what if we want to have thread-local variables created at the class level. Java provides the ThreadLocal utility class to create thread-local variables. Read more to learn about how we can create ThreadLocal variables in the java program.
Java Thread dump provides the information of the current thread. A thread dump is useful to analyze performance issues with the application. You can use thread dump to find and fix deadlock situations. This post explains different methods that can be used to generate thread dumps in java.
Deadlock is a situation where multiple threads are waiting for each other to release resources causing cyclic dependency. This article discusses the situation in which we can get deadlock in a java program. How we can use Thread dump to find the deadlock and best practices to avoid deadlock in java program.
This post explains how we can use Java Timer and TimerTask classes to create jobs to run at a scheduled interval, an example program showing its usage, and how we can cancel the timer.
Before Java 5, the producer-consumer problem can be solved using wait() and notify() methods but the introduction of BlockingQueue has made it very easy. Learn how we can use BlockingQueue to solve the producer-consumer problem in java.
Java Thread Pool is a collection of worker threads waiting to process jobs. Java 5 introduction of the Executor framework has made it very easy to create a thread pool in java. We can use Executors and ThreadPoolExecutor classes to create and manage a thread pool.
Sometimes we want our Thread to return some values that we can use. Java 5 Callable can be used in that case, which is similar to the Runnable interface. We can use the Executor framework to execute Callable tasks.
FutureTask class is the base concrete class that implements the Future interface. We use it with Callable implementation and Executors for asynchronous processing. The FutureTask class provides implementation methods to check the state of the task and return the value to the calling program once its processing is finished. It comes in handy when you want to override some of the implementation methods of the Future interface.
Multithreading is a very broad topic and writing everything about it in a single post wouldn’t have been possible. If you go through the above posts in sequence, you will learn everything about multithreading in Java.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Hi Pankaj Is your multithreading Tutorials updated for the recent Java version ? Which version of jdk it supports ? Do reply.
- Deepak
Thanks for all examples
- Lacarte
Can u help me with the code for database query optimisation using threads??
- Vaibhav Gupta
Is this sentence is correct from your tutorial, We can set different priorities to different Threads but it doesn’t guarantee that higher priority thread will execute first than lower priority thread? I think, Priority threads are executed first. If I am wrong, could you please explain in which case higher priority thread is not executed before lesser priority.
- Shyam Patil
Here body contains single statement, so curly braces is Optional Right ? Thread t = new Thread(() -> {System.out.println(“My Runnable”);}); Can be written as Thread t = new Thread(() -> System.out.println(“My Runnable”));
- Jramapurath
This is quiet helpful , good stuff and easy to understand good stuff is available at below link as well https://www.programinjava.com/2018/02/basics-multithreading-in-java.html
- programinjava
hey thanks for this great information on multi threading in java. I have found this really helpful. Here you covered all the things regarding multi-threading and i was going through the same . It will be helpful if you post on thread priorities.
- Mayur kohli
please explain about locking mechanism of thread , what type of lock in java. how to implement it
- Neeraj
how to print states of thread.
- shahebaz
Hi Pankaj, I have a doubt. How can we manage performance while 500 threads accessing a thread safe object? And each thread takes 1 min to complete its task.
- Aliva