Why do you have to mark a class with the attribute [serializable]?(为什么必须用属性 [serializable] 标记一个类?)
问题描述
您可以将任何文档转换为字节数组并将其保存到磁盘,然后将文件重建为其原始形式(只要您有文件名的元数据等).
Seeing as you can convert any document to a byte array and save it to disk, and then rebuild the file to its original form (as long as you have meta data for its filename etc.).
为什么你必须用 [Serializable]
等标记一个类?这与元数据"类型信息是否相同,因此当您将对象转换为其类时,事情会正确映射?
Why do you have to mark a class with [Serializable]
etc? Is that just the same idea, "meta data" type information so when you cast the object to its class things are mapped properly?
推荐答案
首先,你没有.
它只是一个 标记接口,它告诉序列化程序该类由以下项组成它可以序列化(可能是也可能不是),也就是可以使用默认的序列化.
It is simply a marker interface that tells the serializer that the class is composed of items that it can serialize (which may or may not be true) and that is can use the default serialization.
XMLSerializer
有额外的要求,即类的构造函数为零参数.
The XMLSerializer
has the additional requirement to have a zero parameter constructor to the class.
还有其他使用序列化合同的序列化程序(例如 DataContractSerializer
) - 与简单地将类标记为 Serializable
相比,它们可以让您更好地控制序列化.您还可以通过实现 ISerializable 来获得更多控制权
接口.
There are other serializers that use contracts for serialization (such as the DataContractSerializer
) - they give you more control over serialization than simply marking a class as Serializable
. You can also get more control by implementing the ISerializable
interface.
这篇关于为什么必须用属性 [serializable] 标记一个类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么必须用属性 [serializable] 标记一个类?
基础教程推荐
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01