Mac OS 中的垃圾收集和引用计数有什么区别

发布于 2024-09-16 15:38:58 字数 55 浏览 5 评论 0原文

Mac OS X 中的垃圾收集和引用计数有什么区别。

谢谢并问候。 马哈德万 S

What is the difference between Garbage Collection and Reference Counting in Mac OS X.

Thanks and regards.
Mahadevan S

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

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

发布评论

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

评论(1

冷心人i 2024-09-23 15:38:58

使用垃圾收集时,您不必担心释放分配的内存。垃圾收集器会为你做这件事。

您可以在 垃圾收集编程指南

通常,如果您想启用垃圾收集,则必须使用标志告诉编译器。

垃圾收集在 Mac OS X 上可用,但在 iOS 上不可用。

当不使用垃圾回收而是引用计数时,必须遵循 内存管理编程指南并确保释放您拥有的所有对象。

When using garbage collection you don't have to worry about releasing the memory that you allocate. The garbage collector will do that for you.

You can read more in the Garbage Collection Programming Guide.

Usually you have to tell the compiler with a flag if you want to have garbage collection enabled.

Garbage collection is available on Mac OS X, but not on iOS.

When not using garbage collection, but reference counting, you must follow the Memory Management Programming Guide and make sure that you release all the objects that you own.

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