What are Transient and Volatile Modifiers?

Answers were Sorted based on User's Feedback



What are Transient and Volatile Modifiers?..

Answer / janet

Transient: The transient modifier applies to variable only
and it is not stored as part of it's objects persistent
state.Transient variables are not serialized.
Volatile: Volatile modifier applies to variables only and
it tells the compiler that the variable modified by
volatile can be changed unexpectedly by other parts of the
program.

Is This Answer Correct ?    22 Yes 4 No

What are Transient and Volatile Modifiers?..

Answer / shashank jain

Java defines two interesting type modifiers: transient and
volatile. These modifiers are
used to handle somewhat specialized situations.
When an instance variable is declared as transient, then its
value need not persist
when an object is stored. For example:
class T {
transient int a; // will not persist

int b; // will persist
}
Here, if an object of type T is written to a persistent
storage area, the contents of a
would not be saved, but the contents of b would.
The volatile modifier tells the compiler that the variable
modified by volatile can
be changed unexpectedly by other parts of your program. One
of these situations
involves multithreaded programs. (You saw an example of this
in Chapter 11.) In a
multithreaded program, sometimes, two or more threads share
the same instance
variable. For efficiency considerations, each thread can
keep its own, private copy of
such a shared variable. The real (or master) copy of the
variable is updated at various
times, such as when a synchronized method is entered. While
this approach works
fine, it may be inefficient at times. In some cases, all
that really matters is that the
master copy of a variable always reflects its current state.
To ensure this, simply specify
the variable as volatile, which tells the compiler that it
must always use the master
copy of a volatile variable (or, at least, always keep any
private copies up to date with
the master copy, and vice versa). Also, accesses to the
master variable must be executed
in the precise order in which they are executed on any
private copy.

Is This Answer Correct ?    14 Yes 4 No

What are Transient and Volatile Modifiers?..

Answer / harika.thota001@gmail.com

we can use volatile in the application where a lot of threads are working simultaneously. Each thread having its local copy for instance variable. If we use volatile then it will become master copy. All will access the master copy. so whatever is latest we can use.

While Transient is used in the case of serialization.
Serialization is a process of writing an object in the files.
if we use prefix transient with variable than that variable value will not store when we write the object in the file.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

Is arraylist an object in java?

0 Answers  


How do I enable java in safari?

0 Answers  


explain local datetime api in java8?

0 Answers  


what is synchronization? : Java thread

0 Answers  


what is a thread?

13 Answers   IBM, SunGard,






What is the difference between declaration and definition in java?

0 Answers  


Explain thread life cycle in java?

0 Answers  


Why do we use regex?

0 Answers  


What are scalar data types?

0 Answers  


What are the different ways of implementing thread? Which one is more advantageous?

0 Answers  


What do you mean by multithreaded program?

0 Answers  


Is there any use of an abstract class which has no methods and no attributes?

1 Answers   Wipro,


Categories