Mac OS 中的垃圾收集和引用计数有什么区别
Mac OS X 中的垃圾收集和引用计数有什么区别。
谢谢并问候。 马哈德万 S
What is the difference between Garbage Collection and Reference Counting in Mac OS X.
Thanks and regards.
Mahadevan S
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用垃圾收集时,您不必担心释放分配的内存。垃圾收集器会为你做这件事。
您可以在 垃圾收集编程指南。
通常,如果您想启用垃圾收集,则必须使用标志告诉编译器。
垃圾收集在 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.