是在补水时调用的对象构造函数

发布于 2024-11-16 01:00:39 字数 144 浏览 1 评论 0原文

我有一个对象,在实例化时,它通过构造函数为其自身提供一个唯一的 id。我的问题可能很愚蠢,但我似乎找不到答案。

构造函数会在从隔离存储中重新水化时被调用吗?或者仅在使用“new”关键字时调用构造函数。我的意图不是让它被调用,因为我只想在第一次实例化时调用它。

I have an object that upon instantiation greats a unique id for itself via the constructor. My question may be silly but I cannot seem to find the answer.

Will the constructor be called upon rehydration from isolated storage? or is the constructor only called when using the 'new' keyword. My intention is not to have it called as I only want it to be called when instantiating for the first time.

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

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

发布评论

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

评论(2

蓝戈者 2024-11-23 01:00:39

默认构造函数将在反序列化过程中被调用。它将创建对象,然后复制序列化的属性/字段。

The default constructor will be called during the deserialization process. It will create the object and then copy over the serialized properties/fields.

最好是你 2024-11-23 01:00:39

尽管这是针对 .Net 4,而不是 Silverlight,根据 MSDN:ISerialized Interface,具体来说:

ISerialized 接口意味着
带有签名的构造函数
构造函数(序列化信息
信息、StreamingContext
语境)。在反序列化时,
仅调用当前构造函数

中的数据之后
序列化信息已
由格式化程序反序列化。在
一般来说,这个构造函数应该是
如果类未密封,则受保护。

...我不希望 Windows Phone 上有什么不同。

Although this is for .Net 4, not Silverlight, according to MSDN: ISerializable Interface, specifically:

The ISerializable interface implies a
constructor with the signature
constructor (SerializationInfo
information, StreamingContext
context). At deserialization time, the
current constructor is called
only
after the data in the
SerializationInfo has been
deserialized by the formatter. In
general, this constructor should be
protected if the class is not sealed.

... I wouldn't expect anything different on the Windows Phone.

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