Xcode 4 中蓝线中仪器的百分比
当我单击对象使用中的一行时,例如在泄漏或僵尸中,这些行被标记为蓝色...... 这些百分比就在泄漏原因等的行中。应该是。
但是百分比数字是什么意思呢?
当有 5 个百分比分别为 15% 和 25% 等等时,我有时很难理解百分比。
When I click on a row in the use of an object, in leaks or zombie for example, the lines are marked in blue...
and there are these percentages right in the line where reason of the leak/etc. should be.
But what does the percentage number mean?
I have sometimes trouble with understanding the percentages when there are like 5 of them with 15% and 25% and so on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它意味着 -init... 方法中发生的分配百分比以及这些分配发生的位置。这就是您正在查看的工具和您深入研究的方法。
It means the percentage of allocations that happened in your -init... method and where those allocations occurred. That's the instrument you're looking at and the method you drilled down into.