java - 什么是 serialVersionUID,我为什么要使用它?

标签 java serialization serialversionuid

serialVersionUID 缺失时,Eclipse 会发出警告。

The serializable class Foo does not declare a static final serialVersionUID field of type long

什么是serialVersionUID,为什么它很重要?请举例说明缺少 serialVersionUID 会导致问题。

最佳答案

java.io.Serializable 的文档可能与您得到的解释一样好:

The serialization runtime associates with each serializable class a version number, called a serialVersionUID, which is used during deserialization to verify that the sender and receiver of a serialized object have loaded classes for that object that are compatible with respect to serialization. If the receiver has loaded a class for the object that has a different serialVersionUID than that of the corresponding sender's class, then deserialization will result in an InvalidClassException. A serializable class can declare its own serialVersionUID explicitly by declaring a field named serialVersionUID that must be static, final, and of type long:

ANY-ACCESS-MODIFIER static final long serialVersionUID = 42L;

If a serializable class does not explicitly declare a serialVersionUID, then the serialization runtime will calculate a default serialVersionUID value for that class based on various aspects of the class, as described in the Java(TM) Object Serialization Specification. However, it is strongly recommended that all serializable classes explicitly declare serialVersionUID values, since the default serialVersionUID computation is highly sensitive to class details that may vary depending on compiler implementations, and can thus result in unexpected InvalidClassExceptions during deserialization. Therefore, to guarantee a consistent serialVersionUID value across different java compiler implementations, a serializable class must declare an explicit serialVersionUID value. It is also strongly advised that explicit serialVersionUID declarations use the private modifier where possible, since such declarations apply only to the immediately declaring class — serialVersionUID fields are not useful as inherited members.

关于java - 什么是 serialVersionUID,我为什么要使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/285793/

相关文章:

c# - "Both use the XML type name X, use XML attributes to specify a unique XML name and/or namespace for the type"怎么解决?

django - JSON 使用 simplejson 序列化 Django 模型

java - 为什么 Java 在 Exception 和 Throwable 类中声明 serialVersionUID?

java - 哈希码作为 serialVersionUid

java - 如何确定 Web 客户端的 IP 地址(对于 JSP)?

java - Intellij插件开发,重写CaretImpl

java - Eclipse评论/取消评论快捷方式?

java - 将内存中的数据传递给 R 脚本以创建模型

java - 我在哪里更改 Eclipse 中的设置,以便它为可序列化类生成 serialVersionUID?

c# - 序列化/反序列化为字符串 C#