Skip to content
Advertisement

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?

Advertisement

Answer

statics are implicitly transient, so you don’t need to declare them as such.

Serialization is for serializing instances, not classes. static fields (methods are irrelevant since they are part of the class definition so they aren’t serialized) will be reinitialized to whatever value they are set to when the class is loaded.

If you have a mutable static field, then the changes made to that value will be lost.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement