what is a transient variable?
Answers were Sorted based on User's Feedback
Answer / ravikiran
Transient variable is the one which cann't be serialized
Is This Answer Correct ? | 19 Yes | 3 No |
Answer / firoz mahmud
A transient variable is a variable that may not
be serialized.
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / b.k.senthil kumar
It is java keyword. it comes under seralizable concept .if
we declare one vaiable as transient it can not be
seralizabled
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / debapriya patra
When ever we don't want to serialize a variable , we specify
that variable as transient.So that its not be serialized.And
when we de serialize the value we get the default value of
that variable.
And only we mentioned the variables as transient.
Is This Answer Correct ? | 12 Yes | 5 No |
Answer / jack
A variable transfer one network to other nerwork,sometime
that varaible lost,at this time put transient before a
varaible
Is This Answer Correct ? | 3 Yes | 0 No |
What is the Scope of Static Variable?
what is the Yield() method used in threads?
What are access specifiers available in java?
What is default constructors?
How can an exception be thrown manually by a programmer?
What is the final class?
Explain the purpose of garbage collection in Java?
what are the states associated in the thread? : Java thread
What classes of exceptions may be thrown by a throw statement?
Can a abstract class be defined without any abstract methods?
What is stop(), suspend(), resume() method?
Is integer immutable in java?