Why does Java have transient variables?
|
The From the Java Language Specification, Second Edition, Section 8.3.1.3
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
In this example, the The At the time of deserialization, the 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 |
|||||||||||||
|
|
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. |
||||
|
|
|
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?
Now what is
I want to explain the above two points with the following example:
And the output will be the following:
Middle Name is declared as |
||||
|
|
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. |
|||
|
|
|
"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'. |
|||
|
|
|
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. |
|||||
|
|
It's needed when you don't want to share some sensitive data that go with serialization. |
|||
|
|
|
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 |
|||
|
|
|
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
here making CurrentTemp doesn't make sense beacause you everytime will need current temp not previously stored . |
|||
|
|