NSZone是什么?使用 initWithZone: 有什么优点?
有很多函数,例如
1. NSDefaultMallocZone() 2. NSCreateZone(); 3. NSRecycleZone(); 4. NSSetZoneName(); 5. NSZoneMalloc(); and many more related to NSZone
NSZone 是什么意思,在哪里以及何时使用这些函数?
initWithZone: 有什么优点以及如何在我的 iPhone 应用程序中使用?
There are so many functions like
1. NSDefaultMallocZone() 2. NSCreateZone(); 3. NSRecycleZone(); 4. NSSetZoneName(); 5. NSZoneMalloc(); and many more related to NSZone
What does NSZone means, where to use these functions and when?
What are the advantages of initWithZone: and how to use in my iphone app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 CocoaDev
根据评论编辑:“还需要注意的是,您不能使用如果你使用 ARC,就不再需要 NSZone 了。”
From CocoaDev
Edit from comments: "Also important to note is that you can't use NSZone any more if you're using ARC. Which you should be."