什么是序列化/反序列化和编组/反编组(举例)?
最近,我读到了IClonable
接口及其“序列化”和“编组”主题。我想知道什么是序列化和编组,包括各自的一些示例。
Recently I read about the interface IClonable
and with it the topics of "serialization" and "marshalling." I would like to know what serialization and marshalling are including some examples of each.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
序列化 - 将内存对象转换为二进制数据/文本以便可以存储在光盘上的过程。
反序列化——序列化的逆过程。从磁盘获取二进制数据/文本并将其转换为内存中的对象的过程。
.Net 示例
维基百科:序列化
封送处理 - 在“程序”边界之间传递数据的过程,例如从托管到非托管、从一个进程到另一个进程等。
维基百科:编组
Serialize -A process of converting memory object into binary data/text so that it can be stored on disc.
Deserialize - the reverse of serialization. A process of taking binary data/text from disk and converting it into object in memory.
.Net Example
wikipedia: Serialization
Marshaling - a process of passing data between "program" boundaries, like from managed to unmanaged, from one process to another, etc.
wikipedia: Marshaling