序列化继承 [英] Serializable Inheritance

查看:142
本文介绍了序列化继承的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果一些继承自Serializable类,是子类还是序列化?

If something inherits from a Serializable class, is the child class still Serializable?

推荐答案

这要看你的意思是可序列化。如果你指的是CLI标记(即 [Serializable接口] 属性),那么这是的没有的继承(以下证明)。必须明确标明每个派生类 [Serializable接口] 。但是,如果你指的是 ISerializable的接口,然后是:接口实现是继承的,但你必须要小心 - 例如,通过使用虚拟方法,这样派生类可以贡献自己的数据序列化。

It depends what you mean be serializable. If you mean the CLI marker (i.e. the [Serializable] attribute), then this is not inherited (proof below). You must explicitly mark each derived class as [Serializable]. If, however, you mean the ISerializable interface, then yes: interface implementations are inherited, but you need to be careful - for example by using a virtual method so that derived classes can contribute their data to the serialization.

using System;

class Program
{
    static void Main()
    {
        Console.WriteLine(typeof(Foo).IsSerializable); // shows True
        Console.WriteLine(typeof(Bar).IsSerializable); // shows False
    }
}

[Serializable]
class Foo {}

class Bar : Foo {}

这篇关于序列化继承的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆