Why would anybody want to have a static transient member variable?
David Weitzman
Ranch Hand
Joined: Jul 27, 2001
Posts: 1365
posted
0
First of all, unless my mind is mixed up on terminology, there's no such thing as a static member variable (unless being a member of a class counts). I have more trouble thinking of a time when you would NOT want transient static. [This message has been edited by David Garland (edited December 10, 2001).]
Jane Griscti
Ranch Hand
Joined: Aug 30, 2000
Posts: 3141
posted
0
Hi Mathew, Transient just means the variable won't be serialized. Since 'static' vars aren't serialized anyways there's not much point in making a variable 'static transient'. Not sure why anyone would want one but somewhere out there there is probably a person who has