销毁 X++ 中的对象

发布于 2024-10-30 20:44:49 字数 21 浏览 0 评论 0 原文

如何在 x++ 中销毁对象?

How to destroy an object in x++ ?

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

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

发布评论

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

评论(1

尴尬癌患者 2024-11-06 20:44:49

当不再有对该对象的引用时,该对象将自动销毁。

这意味着如果我们有一个对象a对象b并且b持有对a的引用,b 持有对 a 的引用,>a 就不会被收集。

如果删除 ab 之间的引用,a 将有资格进行垃圾回收,因此 a 将会在后期被销毁。

您可能想查看此链接:析构函数

Objects are automatically destroyed when there are no more references to the object.

This means that if we have a object a and object b and b holds a reference to a, a will not be collected as long as b holds a reference to a.

If the reference between a and b would be removed a would become eligible for garbage collection, and thus a will be destroyed in a later stage.

You might want to check out this link: destructors.

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