为什么 CLR 对象类型是可序列化的?

发布于 2024-10-19 03:23:26 字数 199 浏览 2 评论 0原文

我惊讶地发现 Object 类 装饰有可序列化属性。尽管对象实例可能很有用(例如,对于线程同步),但它们没有可以有意义地存储或重新组合的状态。如果 CLR Object 类没有标记为可序列化,会遇到什么问题?

I am surprised to find that the Object class is decorated with the Serializable attribute. Although Object instances can be useful (for thread synchronization, for instance), they have no state that can be meaningfully stored or re-hydrated. What problems would have encountered if the CLR Object class had not been marked as serializeable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

若言繁花未落 2024-10-26 03:23:26

如果它不可序列化,则 .NET 中的其他类型都无法序列化,因为所有类型最终都派生自 System.Object

If it was not serializable, no other type in .NET would be serializable given that all types derive eventually from System.Object.

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