为什么HashMap的哈希表被标记为transient,尽管类是可序列化的
我正在查看 HashMap 的来源。
HashMap
实现可序列化
。
好的,这样它就可以作为对象保存/传输。
但我看到哈希表本身被标记为transient
。
我不明白这一点。如果您将其标记为瞬态,这是否意味着它不应该被序列化?
但所有数据都在表中。那为什么会瞬态
呢?
也许我对 Serialized
的工作原理感到困惑?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HashMap
使用writeObject
和readObject
来实现自定义序列化,而不是仅仅让其字段正常序列化。它将存储桶的数量、总大小和每个条目写入流中,并在反序列化时从这些字段重建自身。正如 tzaman 所说,表本身在串行形式中是不必要的,因此它不会被序列化以节省空间。您可以在 writeReplace 和
readResolve
) /javase/6/docs/api/java/io/Serializing.html">可序列化 javadoc。HashMap
useswriteObject
andreadObject
to implement custom serialization rather than just letting its field be serialized normally. It writes the number of buckets, the total size and each of the entries to the stream and rebuilds itself from those fields when deserialized. As tzaman says, the table itself is unnecessary in the serial form, so it's not serialized to save space.You can read more about those methods and some other methods of doing custom serialization (
writeReplace
andreadResolve
) in the Serializable javadoc.transient
关键字指示字段不应包含在类的序列化表示中。HashMap
的Entry[]
表只是一个加速结构 - 它允许快速查找存储的条目。整个表本身不需要序列化,只需序列化它包含的条目,因为从条目列表反序列化时可以再次重建表。
The
transient
keyword indicates that a field shouldn't be included in the serialized representation of a class. TheEntry[]
table of aHashMap
is simply an acceleration structure - it allows for fast lookup of the stored entries.The entire table itself doesn't need to be serialized, just the entries it contains, since the table can be rebuilt again when deserializing from the list of entries.