Transient Keyword in Java: What is it & How it Works?
Updated on Mar 07, 2025 | 9 min read | 10.4k views
Share:
For working professionals
For fresh graduates
More
Updated on Mar 07, 2025 | 9 min read | 10.4k views
Share:
Table of Contents
Like all other programming languages, Java Programming Language has a list of reserved words that have a specific meaning. This set of 52 words reserved by Java are known as keywords. Since they have a predefined meaning, programmers can’t use keywords to name their classes, objects, variables, and other identifiers. One out of these 52 keywords is the transient keyword in Java – which will be the focus of our blog!
Check out upGrad’s Core Java Courses and explore engaging learning options!
To prevent the serialization of a class’s data members, use the transient keyword with them. For instance, if a program accepts the username and password of a user. The original password, however, should not be kept in the file. Here, we can use the transient keyword, which instructs JVM to ignore its original value and instead store the object’s default value when it reads the keyword.
The syntax to use this keyword can be:
Transient is one of the more useful modifiers present in the Java programming language. The primary role of the transient keyword comes in cases of serialization. The transient modifier can be applied to field members of a class to turn off serialization on these specific members.
Simply put, the transient keyword in Java can be used by the programmer to avoid serialization. If any particular object of any data structure has been defined as transient by the programmer, it will not be serialized. As a result, you can use the transient keyword to indicate to the JVM (Java Virtual Machine) that your transient variable will not be a part of any persistent state of the object.
Learn Online software development courses from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.
Let’s try to understand the working of the transient keyword in Java using a very basic example. First, we’ll create an Address class and define three attributes for the class – streetName, areaName, and houseNumber. We will keep it transient since we don’t want to store or save the third attribute – houseNumber.
class Address implements Serializable
{
private String streetName;
private String areaName;
private transient String houseNumber;
//Setters and Getters
}
Now let’s serialize an instance of the Address class.
Check out upGrad’s Full Stack Development Bootcamp (JS/MERN)
try{
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("addressinfo.ser"));
Address a = new Address();
a.setstreetName("MIG");
a.setareaName("Vikas Nagar");
emp.sethouseNumber("110");
//Serialize the object
oos.writeObject(a);
oos.close();
} catch (Exception e)
{
System.out.println(e);
}
If our code works correctly, the ‘houseNumber’ information would not have been saved since we defined it as transient. Now, we’ll try to deserialize it back into the original object and see if the info was saved or not.
try{
ObjectInputStream o = new ObjectInputStream(new FileInputStream("addressinfo.ser"));
//Read the object back
Address readAddressInfo = (Address) o.readObject();
System.out.println(readAddressInfo.getstreetName());
System.out.println(readAddressInfo.getareaName());
System.out.println(readAddressInfo.gethouseNumber());
o.close();
} catch (Exception e)
{
System.out.println(e);
}
If you run the above piece of Java program, you will receive the following output:
MIG
Vikas Nagar
null
As you can see, ‘houseNumber’ information was not saved to a permanent state because of serialization, and that is why we receive the value ‘null’ as an output. This is precisely why the transient keyword is used – to store values into variables in a manner that is not permanent but transient.
upGrad’s Exclusive Software Development Webinar for you –
SAAS Business – What is So Different?
Now that you understand the transient keyword and what it does, the next logical question that arises is – when do we use the transient keyword?
Let’s expand our learnings about the transient keyword by looking deeply at some of the situations where you would benefit from using the transient keywords.
Here are some commonly encountered use-cases for you to keep in mind:
The use-cases discussed above are by no means exhaustive. Experiment with the transient keyword and come up with your own use cases. After all, keywords are made for programmers, and you’ll be able to make most of the keywords only when you know how they function and what they mean.
With that, we come to the end of this blog on transient keywords in Java. This is one of the more introductory concepts that you must look to master in order to grow in your software development career. The field of software development is extremely dynamic yet very welcoming if you are ready to pull your socks and put in your best efforts!
At upGrad, we have mentored and guided students from across the globe, belonging to different domains and helped them kick start their careers in software development. Our PGP in Software Development – Specialisation in Full Stack Development is designed for freshers and experienced professionals. Besides expert tutors and state-of-the-art learning material, you also get talented peers, comprehensive placement support, and one-on-one mentoring with industry leaders. So check out the course content and get yourself registered soon!
What happens when a transient field is accessed after deserialization?
On deserializing an object, any transient fields are set to their default values (e.g., null for reference types, 0 for numerical types). You will get its default value if you try to access a transient field after deserialization.
Can the use of a transient keyword impact performance?
Yes, the presence of a transient keyword Java can impact performance, as the serialization and deserialization process skips the transient fields. However, one must understand that the impact is typically small. It is noticeable only in performance-critical applications.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
India’s #1 Tech University
Executive PG Certification in AI-Powered Full Stack Development
77%
seats filled
Top Resources