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.
类 Siva 实现可序列化 {
}
但是不使用 Serializable 接口如何使我们的类成为可序列化的
可能如果您需要有自己的序列化逻辑,然后去实现 Externalizable 接口。
如果可以决定不使用 Serializable,那么您将必须提供序列化/反序列化逻辑。
使用 Java API 序列化方法的唯一方法是通过 Serializable 接口。
只是出于好奇:你为什么不想要 Serializable?并不是说很难实现...