Re: static n transient variables in serialization..
Posted By:
Simon_Ablett
Posted On:
Friday, August 23, 2002 07:43 AM
The transient keyword is used to denote attributes that are not part of the class' persistent state and which do not therefore need to be serialised.
Static attributes are of class rather than instance scope.
Regards.