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.
我有一个包含 nio 缓冲区作为数据成员的类。我想知道如何序列化这个类?
您是否在问如何在实现 Serializable 时防止特定字段被序列化?如果是这样,请制作该字段transient。
transient
使其成为瞬态的,因此默认情况下它不会被序列化。如果您需要序列化其中的 dat,您可以添加自己的writeObject方法readObject来执行此操作。
writeObject
readObject