Java static serialization rules?

前端 未结 6 2135
再見小時候
再見小時候 2020-11-28 08:22

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

6条回答
  •  旧巷少年郎
    2020-11-28 09:07

    static fields are ignored for serialization.

    Updated to say static rather than transient as I originally intended...

提交回复
热议问题