Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why does Java have transient variables?

share|improve this question

10 Answers

up vote 294 down vote accepted

The transient keyword in Java is used to indicate that a field should not be serialized.

From the Java Language Specification, Second Edition, Section 8.3.1.3 transient Fields:

Variables may be marked transient to indicate that they are not part of the persistent state of an object.

For example, you may have fields that are derived from other fields, and should only be done so programmatically, rather than having the state be persisted via serialization.

Here's a GalleryImage class which contains an image and a thumbnail derived from the image:

class GalleryImage implements Serializable
{
    private Image image;
    private transient Image thumbnailImage;

    private void generateThumbnail()
    {
        // Generate thumbnail.
    }

    private void readObject(ObjectInputStream inputStream)
            throws IOException, ClassNotFoundException
    {
        inputStream.defaultReadObject();
        generateThumbnail();
    }    
}

In this example, the thumbnailImage is a thumbnail image that is generated by invoking the generateThumbnail method.

The thumbnailImage field is marked as transient, so only the original image is serialized rather than persisting both the original image and the thumbnail image. This means that less storage would be needed to save the serialized object. (Of course, this may or may not be desirable depending on the requirements of the system -- this is just an example.)

At the time of deserialization, the readObject method is called to perform any operations necessary to restore the state of the object back to the state at which the serialization occurred. Here, the thumbnail needs to be generated, so the readObject method is overrided so that the thumbnail will be generated by calling the generateThumbnail method.

For additional information, the Discover the secrets of the Java Serialization API article (which was originally available on the Sun Developer Network) has a section which discusses the use of and presents a scenario where the transient keyword is used to prevent serialization of certain fields.

share|improve this answer
24  
But why is it a keyword, and not an annotation @DoNotSerialize? – Elazar Leibovich Mar 26 '11 at 21:46
40  
I guess, this is owned to a time when there were no annotations in Java. – Peter Wippermann Apr 4 '11 at 13:48
4  
I find it odd that serializable is internal to Java. It can be implemented as an interface or abstract class that requires users to override the read and write methods. – caleb Feb 17 '12 at 19:30

To allow you to define variables that you don't want to serialise.

In an object you may have information that you don't want to serialise/persist (perhaps a reference to a parent factory object), or perhaps it doesn't make sense to serialise. Marking these as 'transient' means the serialisation mechanism will ignore these fields.

share|improve this answer

Before understanding Transient keyword one has to understand the concept of Serialization.If user knows about serialization please skip the first point.

What is serialization?

  • Serialization is the process of making the object’s state persistent. That means the state of the object is converted into stream of bytes and stored in a file. In the same way we can use the de-serialization concept to bring back the object’s state from bytes. This is one of the important concepts in Java programming because this serialization is mostly used in the networking programming. The objects which need to be transmitted through network have to be converted as bytes, for that purpose every class or interface must implement Serialization interface. It is a marker interface without any methods.

Now what is transient keyword and its purpose?

  • By default all the variables in the object get converted into a persistent state. In some cases, you may want to avoid persisting some variables because you don’t have the necessity to persist those variables. So you can declare those variables as transient. if the variable is declared as transient, then it will not be persisted. It is the main purpose of the transient keyword.

I want to explain the above two points with the following example:

package javabeat.samples;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;

class NameStore implements Serializable{
    private String firstName;
    private transient String middleName;
    private String lastName;

    public NameStore (String fName, String mName, String lName){
        this.firstName = fName;
        this.middleName = mName;
        this.lastName = lName;
    }

    public String toString(){
        StringBuffer sb = new StringBuffer(40);
        sb.append("First Name : ");
        sb.append(this.firstName);
        sb.append("Middle Name : ");
        sb.append(this.middleName);
        sb.append("Last Name : ");
        sb.append(this.lastName);
        return sb.toString();
    }
}

public class TransientExample{
    public static void main(String args[]) throws Exception {
        NameStore nameStore = new NameStore("Steve", "Middle","Jobs");
        ObjectOutputStream o = new ObjectOutputStream(new FileOutputStream("nameStore"));
        // writing to object
        o.writeObject(nameStore);
        o.close();

        // reading from object
        ObjectInputStream in = new ObjectInputStream(new FileInputStream("nameStore"));
        NameStore nameStore1 = (NameStore)in.readObject();
        System.out.println(nameStore1);
    }
}

And the output will be the following:

First Name : Steve
Middle Name : null
Last Name : Jobs

Middle Name is declared as transient, so it will not be stored in the persistent storage.

share|improve this answer
This example is taken from this code, you can read it here:javabeat.net/2009/02/what-is-transient-keyword-in-java – Krishna Nov 20 '12 at 10:43

Because not all variables are of a serializable nature

share|improve this answer

A transient variable is a variable that may not be serialized.

One example of when this might be useful that comes to mind are variables that make only sense in the context of a specific object instance and which become invalid once you have serialized and deserialized the object. In that case it is useful to have those variables become null instead so that you can re-initialize them with useful data when needed.

share|improve this answer

"transient" is used to indicate that a class field don't need to be serialized. Probably the best example is a 'Thread' field. There's usually no reason to serialize a 'Thread', as it's state is very 'flow specific'.

share|improve this answer

Serialization systems other than the native java one can also use this modifier. Hibernate, for instance, will not persist fields marked with either @Transient or the transient modifier. Terracotta as well respects this modifier.

I believe the figurative meaning of the modifier is "this field is for in-memory use only. don't persist or move it outside of this particular VM in any way. Its non-portable". i.e. you can't rely on its value in another VM memory space. Much like volatile means you can't rely on certain memory and thread semantics.

share|improve this answer
6  
I think that transient wouldn't be a keyword if it were designed at this time. They'd probably use an annotation. – Joachim Sauer Mar 26 '10 at 14:13

It's needed when you don't want to share some sensitive data that go with serialization.

share|improve this answer

A transient variable is a variable that may not be serialized.

One example of when this might be useful that comes to mind are variables that make only sense in the context of a specific object instance and which become invalid once you have serialized and deserialized the object. In that case it is useful to have those variables become null instead so that you can re-initialize them with useful data when needed. so, transient variable dose not participated serialization and static variables are also does not participated in the deserializetion

share|improve this answer
this is same as what Adrian Grigore answered, except the last line. – Veera Nov 19 '12 at 9:26

transient variables are needed when you don't want something to be written to persistent storage , just because you think it's the state of this variable is not relevant
Example:

int CurrentTemp;
int retCurrentTemp{
return(thermoMeter.getTemp());
} 

here making CurrentTemp doesn't make sense beacause you everytime will need current temp not previously stored .

share|improve this answer
correct me if worng – decoder Dec 19 '12 at 7:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.