Skip to content
Advertisement

Tag: serialization

Java static serialization rules?

I’m working on a save state serialization with a few static methods and fields. I could have sworn though that serialization and static’s caused mayhem. Should I make all static’s transient? And will inflating the calls restore the statics as normal? Answer statics are implicitly transient, so you don’t need to declare them as such. Serialization is for serializing instances,

Advertisement