Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconSoftware Developmentbreadcumb forward arrow iconLife Cycle of Thread in Java

Life Cycle of Thread in Java

Last updated:
21st Jun, 2023
Views
Read Time
10 Mins
share image icon
In this article
Chevron in toc
View All
Life Cycle of Thread in Java

Basics of Java Threads:

A thread in Java facilitates the performance of multiple activities inside a single process. It is regarded as a lightweight process. A thread can also be defined as a sequence of executed statements. Every thread in Java has its own stack, program counter and local variables. Java threads may also be a nested series of method calls. The memory, per-process state and files are shared by threads. 

The Uses of the Life Cycle of Thread in Java

  • The life cycle of thread in Java is used to manage and control the behaviour of threads. It is a multithreading mechanism that helps to coordinate multiple threads running concurrently in a program or application.
  • Threads are created using the Thread class, which provides various methods to manage their state and behaviour. These include pause(), resume(), yield(), etc., which can be used to pause or stop a thread from executing when needed. This helps maintain synchronization between different threads by controlling how many resources each thread can access at any given time.
  • The life cycle of thread in Java consists of five states: New, Runnable, Running, Blocked, and Dead/ Terminated. Each state has its own operations that must be performed before it can transition to the next state.
  • In New state, a thread is created but not yet started. Once the start() method is called, it will enter Runnable state and wait for the scheduler to select it for execution.
  • In Runnable state, the thread is eligible to be selected by the scheduler for execution and enters the Running state once selected.
  • The Running state is when the JVM has chosen a thread to execute some code which means that this thread gets CPU time and executes instructions until completion or preemption (interruption) occurs due to other threads wanting access to resources or higher priority threads getting priority over low priority threads.
  • In a Blocked state, a thread is blocked from executing due to some external resources not being available or because of synchronization issues with other threads in the program. The thread is unblocked when the resource becomes available and can enter the Runnable state again.
  • Finally, when a thread completes its task or is terminated, it will enter Dead/ Terminated state, meaning that this thread cannot be reused anymore and must be recreated to execute new tasks.

To illustrate this concept further, let’s look at thread life cycle example program in Java:

public class ThreadLifeCycle {
public static void main(String[] args) {
Thread t1 = new Thread(new MyRunnable());
System.out.println("Thread in New State: " + t1.getState());
t1.start(); // start the thread, entering Runnable state
System.out.println("Thread in Runnable State: " + t1.getState());
// wait for the thread to transition to Running state or interrupt it
while (t1.isAlive()) {
System.out.println("Thread in Running State: "+ t1.getState());
try {
Thread.sleep(200); // wait for the thread to finish or be blocked
} catch (InterruptedException e) {
e.printStackTrace();
}
}

System.out.println(“Thread in Dead/Terminated State: ” + t1.getState()); //at this point, the thread is dead and cannot be restarted again

}

static class MyRunnable implements Runnable {

Ads of upGrad blog

public void run() {

Some task here… //the thread is now executing its instructions in the Running state

}
}
}

By understanding the life cycle of thread in Java, developers can write programs that make use of the multithreading capabilities of the JVM. This will lead to an efficient and optimized code base and better application performance.

If you’re asked to write a Java program to implement thread life cycle , you can use the example program above as a reference to get started. Additionally, make sure to read more about thread life cycle in Java and understand all of its components and states before attempting to write your program. With practice and guidance from experienced mentors, you should be able to create an effective implementation of thread life cycle in Java.

Uses of threads in Java:

    • To perform background or asynchronous processing
    • To enhance the sensitivity of GUI applications
    • To implement the positive sides of multiprocessor systems
    • To streamline programming logic in the case of the existence of multiple

There exist two execution paths when a thread is called. One of the two paths is used for thread execution and the other one will trail the statement succeeding the thread invocation. Each thread in Java has a separate memory space and stack. 

The risk factors encountered while using threads in Java codes are as follows.

  • Proper coordination between the threads is required in cases where threads access common variables to view data consistently.
  • The performance and maintenance of threads, if overused in the programs, becomes difficult.

Life Cycle of Threads in Java:

At any instant of program execution, the threads in Java exist in any one of the below-mentioned states. 

  1. New
  2. Blocked
  3. Runnable
  4. Timed waiting
  5. Waiting
  6. Terminated 

A detailed view of Life Cycle of thread in Java

New thread:

The newly created thread is in the state ‘New’. It is not progressed to run at this state. The execution of the code of a thread in the new state is yet to take place. It is yet to run. 

Runnable state:

The threads in the runnable state are ready to run. A thread in this state maybe ready to run at any time instant or may already be running. The thread scheduler hones the responsibility of allocating time for the thread to run. Each individual thread is allocated a specific time in a multi-threaded program. Each individual thread runs for a small duration and then encounters a pause. The CPU is then relinquished to another thread to provide a chance for the other threads to run. At this point, all the ready to run threads that are waiting for the CPU and the threads that are running currently lie in a runnable state.

Check out our free technology courses to get an edge over the competition.

Explore our Popular Software Engineering Courses

Waiting /Blocked state:

A thread is in any one of the below-mentioned states when it is temporarily not operating. 

  • Waiting
  • Blocked

A thread waiting for the completion of I/O is in a blocked state. The thread scheduler’s function is to schedule the execution of a blocked or waiting thread by reactivating it. Any thread in this state is not allowed for the further continuation of execution till it is transformed to a runnable state. The threads in the block or waiting state do not use any CPU cycle. 

A thread is forced to be blocked when it attempts to access a code’s protected section that is protected by some other thread at present. The scheduler transforms one of the threads waiting for a protected section into a runnable state when the section is unlocked for all the threads. On the other hand, a thread exists in a waiting state while it waits for the other thread on a particular condition. The threads in the waiting state are pushed to a runnable state once the condition specified for waiting is satisfied. If a thread running at present is moved to a waiting / blocked state, the thread scheduler schedules another thread from the runnable sequence to run.

Timed Waiting:

When a method is invoked with a time out argument, the thread exists in a timed waiting state. A thread continues to lie in this state till the completion of specified timeout or until the reception of a notification. For example, a thread is shifted to a timed waiting state if it invokes conditional wait or sleep. 

Terminated state:

The termination of threads takes place because of any one of the following reasons. 

  • The Normal exit of the thread on completion of the execution of the code segments within the thread.
  • Occurrence of any rare erroneous event such as an unhandled exception and segmentation fault. 

A thread in a terminated state does not consume any CPU cycles. 

Learn Software Development Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs or Masters Programs to fast-track your career.

In-Demand Software Development Skills

Implementation of thread states in Java:

To accomplish the current state of a thread in Java, we use the method Thread.getState(). Java also offers the java.lang.Thread.State class in which the ENUM constants for a thread’s state is defined. The details are summarized in the table below. 

Constant TypeDeclarationDescription
Newpublic static final Thread.State NEWIt is the thread state of the thread that is just created and yet to start its execution.
Runnablepublic static final Thread.State RUNNABLEIt describes the state of a thread that is already running or a thread that is in ready to run state.

The same thread can be in a runnable state for the Java Virtual machine and waiting state for other operating system resources such as a processor.

Blockedpublic static final Thread.State BLOCKEDIt describes the state of a thread that is blocked waiting for the monitor lock. It remains in the same state until the monitor block enters a synchronized method/block or re-enters the synchronized method after invoking the Object.wait().
Waitingpublic static final Thread.State WAITINGIt describes the state of a thread that is waiting due to the invoking of one of the following methods.

  1. Object.wait with no timeout
  2. LockSupport.park
  3. Thread.join with no timeout

The waiting state may be because of the completion of a particular task by another thread.

Timed waitingpublic static final Thread.State TIMED_WAITINGIt is a state of the thread that waits for a specified time. The invocation of any of the following methods results in a timed waiting state of a thread with an assigned positive waiting time. 

  1. Thread.join with timeout
  2. Object.wait with timeout
  3. LockSupport.partUntil
  4. LockSupport.parkNanos
Terminatedpublic static final Thread.State TERMINATEDIt is the state of a thread that has completed executing its constituent code statements. 

The thread rests in a NEW state when it is just created. When the .start() method is invoked on a thread, it is moved to a Runnable state by the thread scheduler. When the join() method is invoked on a thread instance, the thread that is executing the code statement currently will wait for this thread to terminate. So, prior to the printing of the final statement on the console, the join() function is invoked on thread 2 by the program and keeps the thread1 on wait till the thread2 completes its execution and moves to the Terminated State. Since thread1 is waiting for the completion of thread2’s execution, it is put in the WAITING state.

Read our Popular Articles related to Software Development

Merits and Limitations of using threads in Java programs:

Ads of upGrad blog

The use of threads in Java programs has the following benefits. 

  • Reduction in time taken to develop the code
  • Reduced maintenance costs
  • Enhanced performance of complex applications
  • Boosting the responsivity of the user interfaces
  • Parallelizing the tasks
  • Threads are used in server applications to improve the high throughput and utilization of resources. 
  • If all the CPU’s computing resources cannot be used by a thread, the running of another thread will keep these engaged. 
  • If the same set of data is operated on by several threads, their cache can be shared. This leads to the better usage of cache or harmonization of its values.

There are several drawbacks of using threads in Java programs. Some of them are listed below.

  • While sharing caches, translation lookaside buffers (TLBs) or any other hardware resources, multiple threads may interfere with each other. 
  • Even when only a single thread is operating, the execution time of a thread cannot be enhanced. However, the degradation of the execution time is permitted. This may be due to the additional pipeline stages and/or the slower frequencies that are required for the accommodation of the thread-switching hardware.
  • Numerous changes are required in both operating systems and application programs as compared to multiprocessing because hardware support is more exposed to the software in multithreading.

Conclusion 

The life cycle of a thread in Java is an essential part of the process of programming multi-threaded applications. It helps us to understand the various states that a thread can transition between and how these transitions occur throughout program execution. Furthermore, understanding the merits and limitations of using threads in a program can help us decide whether or not they are the right choice for our specific application. Ultimately, knowledge about thread life cycles provides us with an invaluable resource when writing multi-threaded applications in Java. With this information at hand, we have a better chance of transforming our code into efficient and robust programs.

If you’re interested to learn more about Java, full-stack software development, check out upGrad & IIIT-B’s Executive PG Programme in Software Development – Specialisation in Full Stack Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

Profile

Pavan Vadapalli

Blog Author
Director of Engineering @ upGrad. Motivated to leverage technology to solve problems. Seasoned leader for startups and fast moving orgs. Working on solving problems of scale and long term technology strategy.

Explore Free Courses

Suggested Blogs

Scrum Master Salary in India: For Freshers & Experienced [2023]
900134
Wondering what is the range of Scrum Master salary in India? Have you ever watched a game of rugby? Whether your answer is a yes or a no, you might h
Read More

by Rohan Vats

05 Mar 2024

SDE Developer Salary in India: For Freshers & Experienced [2024]
904670
A Software Development Engineer (SDE) is responsible for creating cross-platform applications and software systems, applying the principles of compute
Read More

by Rohan Vats

05 Mar 2024

System Calls in OS: Different types explained
5011
Ever wondered how your computer knows to save a file or display a webpage when you click a button? All thanks to system calls – the secret messengers
Read More

by Prateek Singh

29 Feb 2024

Marquee Tag & Attributes in HTML: Features, Uses, Examples
5058
In my journey as a web developer, one HTML element that has consistently sparked both curiosity and creativity is the venerable Marquee tag. As I delv
Read More

by venkatesh Rajanala

29 Feb 2024

What is Coding? Uses of Coding for Software Engineer in 2024
5030
Introduction  The word “coding” has moved beyond its technical definition in today’s digital age and is now considered an essential ability in
Read More

by Harish K

29 Feb 2024

Functions of Operating System: Features, Uses, Types
5063
The operating system (OS) stands as a crucial component that facilitates the interaction between software and hardware in computer systems. It serves
Read More

by Geetika Mathur

29 Feb 2024

What is Information Technology? Definition and Examples
5026
Information technology includes every digital action that happens within an organization. Everything from running software on your system and organizi
Read More

by spandita hati

29 Feb 2024

50 Networking Interview Questions & Answers (Freshers & Experienced)
5074
In the vast landscape of technology, computer networks serve as the vital infrastructure that underpins modern connectivity.  Understanding the core p
Read More

by Harish K

29 Feb 2024

10 Best Software Engineering Colleges (India and Global) 2024
5384
Software Engineering is developing, designing, examining, and preserving software. It is a structured and trained approach through which you can devel
Read More

by venkatesh Rajanala

28 Feb 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon