快速业务通道

谈谈J2SE中的序列化之当序列化遭遇继承 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-07-04

谈谈J2SE中的序列化之当序列化遭遇继承

时间:2009-11-23

当一个父类实现Serializable接口后,他的子类都将自动的实现序列化。

以下验证了这一点:

package Serial; import java.io.Serializable; public class SuperC implements Serializable {//父类实现了序列化 int supervalue; public SuperC(int supervalue) { this.supervalue = supervalue; } public String toString() { return "supervalue: "+supervalue; } } public class SubC extends SuperC {//子类 int subvalue; public SubC(int supervalue,int subvalue) { super(supervalue); this.subvalue=subvalue; } public String toString() { return super.toString()+" sub: "+subvalue; } } public class Test1 { public static void main(String [] args){ SubC subc=new SubC(100,200); FileInputStream in=null; FileOutputStream out=null; ObjectInputStream oin=null; ObjectOutputStream oout=null; try { out = new FileOutputStream("Test1.txt");//子类序列化 oout = new ObjectOutputStream(out); oout.writeObject(subc); oout.close(); oout=null; in = new FileInputStream("Test1.txt"); oin = new ObjectInputStream(in); SubC subc2=(SubC)oin.readObject();//子类反序列化 System.out.println(subc2); } catch (Exception ex){ ex.printStackTrace(); } finally{ …此处省略 } } }

运行结果如下:

supervalue: 100 sub: 200

可见子类成功的序列化/反序列化了。

怎管让子类实现序列化看起来是一件很简单的事情,但有的时候,往往我们不能够让父类实现Serializable接口,原因是有时候父类是抽象的(这并没有关系),并且父类不能够强制每个子类都拥有序列化的能力。换句话说父类设计的目的仅仅是为了被继承。

要为一个没有实现Serializable接口的父类,编写一个能够序列化的子类是一件很麻烦的事情。java docs中提到:

“To allow subtypes of non-serializable classes to be serialized, the subtype may assume responsibility for saving and restoring the state of the supertype''s public, protected, and (if accessible) package fields. The subtype may assume this responsibility only if the class it extends has an accessible no-arg constructor to initialize the class''s state. It is an error to declare a class Serializable if this is not the case. The error will be detected at runtime. ”

谈谈J2SE中的序列化之当序列化遭遇继承(2)

时间:2009-11-23

也就是说,要为一个没有实现Serializable接口的父类,编写一个能够序列化的子类要做两件事情:

其一、父类要有一个无参的constructor;

其二、子类要负责序列化(反序列化)父类的域。

我们将SuperC的Serializable接口去掉,而给SubC加上Serializable接口。运行后产生错误:

java.lang.Error: Unresolved compilation problem: Serializable cannot be resolved or is not a valid superinterface at Serial.SubC.<init>(SubC.java:15) at Serial.Test1.main(Test1.java:19) Exception in thread "main"

果真如docs中所说的一样,父类缺少无参构造函数是不行的。

接下来,按照docs中的建议我们改写这个例子:

public abstract class SuperC { int supervalue; public SuperC(int supervalue) { this.supervalue = supervalue; } public SuperC(){}//增加一个无参的constructor public String toString() { return "supervalue: "+supervalu

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号