什么是序列化/反序列化和编组/反编组(举例)?

发布于 2024-09-17 01:04:43 字数 78 浏览 6 评论 0原文

最近,我读到了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

提笔落墨 2024-09-24 01:04:43

序列化 - 将内存对象转换为二进制数据/文本以便可以存储在光盘上的过程。
反序列化——序列化的逆过程。从磁盘获取二进制数据/文本并将其转换为内存中的对象的过程。
.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文