Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 serializable 是一个标记接口时,它如何使对象持久化?当接口的主体什么都不是时,它如何对实现它的类执行一些操作?
使用 ObjectOutputStream 使对象可持久化。此类只会序列化标有此接口的类,以防止您序列化您不打算或无法序列化的类。
注意:有些序列化库不遵循 Serialzation 的所有规则,可以忽略 Serializable 接口。