cocoa内存autorelease pool原理

cocoa内存autorelease pool原理,第1张

概述         苹果官方文档:The AppKit and UIKit frameworks automatically create a pool at the beginning of each event-loop iteration, such as a mouse down event or a tap, and drain it at the end.   AppKit和UIKit框

         苹果官方文档:The AppKit and UIKit frameworks automatically create a pool at the beginning of each event-loop iteration,such as a mouse down event or a tap,and drain it at the end.   AppKit和UIKit框架在每个event-loop事件循环中创建一个pool,如鼠标按下事件或者一个手势,这个pool会在这个事件结束时释放掉。


          即:当一个事件产生时(如鼠标事件、触摸屏事件、网络事件、定时器事件),系统会创建一个autorelease pool,系统会把本次事件处理中的autorelease对象放入到autorelease pool中,当本次事件处理结束时,系统会销毁这个autorelease pool,销毁这个autorelease pool时,会把池中对象的引用计数减一,如果有对象的引用计数为0时,则释放这个对象。当下一个事件到来时,系统会创建一个新的autorelease pool.

总结

以上是内存溢出为你收集整理的cocoa内存autorelease pool原理全部内容,希望文章能够帮你解决cocoa内存autorelease pool原理所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1064145.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存