关键字: serialversionuid, static final serialversionuid
The serializable class XXX does not declare a static final serialVersionUID field of type long的警告
今天在编写一个计算器的程序的时候,发现这个警告提示,于是google。得到答案如下:
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.
以上是Serializable在javadoc中的描述。
也既是说:
serialVersionUID用来作为Java对象序列化中的版本标示之用;
如果一个序列化类没有声明这样一个static final的产量,JVM会根据各种参数为这个类计算一个;
对于同样一个类,不同版本的JDK可能会得出不同的serivalVersionUID;
The serializable class XXX does not declare a static final serialVersionUID field of type long
serialVersionUID作用:
序列化时为了保持版本的兼容性,即在版本升级时反序列化仍保持对象的唯一性。
你可以随便写一个,在Eclipse中它替你生成一个,有两种生成方式:
一个是默认的1L,比如:private static final long serialVersionUID = 1L;
一个是根据类名、接口名、成员方法及属性等来生成一个64位的哈希字段,比如:private static final long serialVersionUID = -8940196742313994740L;之类的。
当你一个类实现了Serializable接口,如果没有定义serialVersionUID,Eclipse会提供这个提示功能告诉你去定义之。
在Eclipse中点击类中warning的图标一下,Eclipse就会自动给定两种生成的方式,如上面所述。如果不想定义它,在Eclipse的设置中也可以把它关掉的,设置如下:
Window ==> Preferences ==> Java ==> Compiler ==> Error/Warnings ==> Potential programming problems
将Serializable class without serialVersionUID的warning改成ignore即可。
如果你没有考虑到兼容性问题时,就把它关掉,不过有这个功能是好的,只要任何类别实现了Serializable这个接口的话,如果没有加入 serialVersionUID,Eclipse都会给你warning提示,这个serialVersionUID为了让该类别 Serializable向后兼容。
如果你的类Serialized存到硬盘上面后,可是后来你却更改了类别的field(增加或减少或改名),当你Deserialize时,就会出现Exception的,这样就会造成不兼容性的问题。
但当serialVersionUID相同时,它就会将不一样的field以type的预设值Deserialize,这个可以避开不兼容性的问题。
最后,不考虑兼容性的问题,我把这个warning改成ignore了。
分享到:
相关推荐
Define a two-dimensional long integer array A of 3 rows and 4 columns. Fill the elements of the arrays ...Declare a 3D array C, big enough to store two copies of array A and copy array A into C twice.
declare function add(a: number, b: number): number; ``` 这将声明一个名为 `add` 的函数,该函数接受两个 `number` 类型的参数,并返回一个 `number` 类型的值。 Declare 类 使用 Declare 关键字还可以声明类。...
1. Declare a two-dimensional integer array named sales. Populate the first four columns using the following data. Quarter 1 Quarter 2 Quarter3 Quarter 4 Total Dept. 1 750 660 910 800 Dept. 2 800 700...
apr 1.6.5 设置宏APR_DECLARE_STATIC apriconv 1.2.2 API_DECLARE_STATIC aprutil 1.6.1 APU_DECLARE_STATIC libcurl 7.62 CURL_STATICLIB mxml github master 分支 2018-11-28 全部是mt lib ,工具 VS2015
Do not forget that a -inl.h file requires a #define guard just like any other header file. Function Parameter Ordering link ▶When defining a function, parameter order is: inputs, then outputs. ...
如果要使自定义类型或其他非QMetaType内置类型在QVaiant中使用,必须使用该宏Q_DECLARE_METATYPE。 该类型必须有公有的 构造、析构、复制构造 函数 qRegisterMetaType 必须使用该函数的两种情况:1、如果非QMetaType...
`Q_DECLARE_METATYPE` 和 `qRegisterMetaType` 就是为了支持这种需求而设计的。 `Q_DECLARE_METATYPE` 是一个宏,用于向Qt的元对象系统声明一种新的数据类型。元对象系统是Qt中用于动态类型信息和信号与槽机制的...
在MFC(Microsoft Foundation Classes)框架中,STATIC控件通常用于显示简单的文本或者图标,而它们默认不支持鼠标事件。然而,如果你希望在用户点击STATIC TEXT控件时触发某些行为,可以通过自定义控件和处理消息...
test03-declare.sh: 5: declare: not found ``` 这是因为 sh 命令无法正确地解释 declare 命令,导致 declare 命令未被识别。 相比之下,如果我们使用 bash 命令来执行脚本,结果将是正确的: ```bash $ bash ...
在过程中,可以使用`DECLARE`声明变量,并通过`SET`或`SELECT INTO`进行赋值。这些功能增强了数据库的灵活性和可维护性,使得复杂的数据处理任务变得更加简洁和易管理。在实际开发中,熟练掌握这些操作能显著提高...
DECLARE CONTINUE HANDLER FOR NOT FOUND SET finished = 1; ``` 这里的`finished`变量用于标记是否达到结果集末尾。处理程序的声明应位于变量和游标声明之后。 下面是一个使用游标的示例,展示如何获取`employees`...
- this is not a sum, it's a string concatenation Declare.js允许您显式声明参数的类型。 仅当参数具有正确的类型时,才调用您的函数。 让我们使用Declare.js重写示例代码: var sum = declare ( [ Number , ...
在Windows编程中,静态文本控件(Static Text)通常用于显示不可编辑的文本信息。在Microsoft Visual C++ 6.0(简称VC6.0)环境下,标准的Static Text控件默认只支持纯色背景,且无法直接通过API或属性设置自定义...
最近在模仿今日头条,发现它的很多属性都是通过自定义控件并设定相关的配置属性进行配置,于是便查询了解了下declare-styleable,下面我把自己的使用感受和如何使用进行说明下。 declare-styleable:declare-...
DECLARE SQLCODE INT DEFAULT 0.pdf
public static final int[] Wisely = { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003 }; public static final int Wisely_wisely_1 = 0; public static final int Wisely_wisely_2 = 1; public static final...
The Android architecture does not allow to start communication from the Android to the host through the USB cable.The opposite is possible, using the Google "Android Debug Bridge" (ADB in short)....
在Windows程序设计中,`Static`控件是一种常见的UI元素,通常用于显示固定不变的文本。然而,有时候我们可能需要让这些静态文本动起来,比如实现滚动字幕的效果。本篇将详细介绍如何在C++环境下,通过继承`CStatic`...
We does not make a object of the abstract class. This class must be inherited. Unlike interface the abstract class may implement some of the methods defined in the class, but in this class at least ...