Xcode 静态分析器显示困难
我正在使用 Xcode 的静态分析器来找出项目中潜在的泄漏,它工作得非常好。但是,有时即使在释放物体后,分析仪也会显示潜在的泄漏。我发现很难理解这个结果。
I am using Xcode's static analyzer to find out the potential leaks in my project and it's working absolutely fine. But, sometimes the analyzer is showing a potential leak even after releasing the object. I am finding it difficult to understand this outcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了一个问题之外,内存泄漏不会给您带来任何问题。
如果您有大量内存泄漏并且为应用程序分配的内存已满,那么您的应用程序将会崩溃。除了这种情况外,您的应用程序将运行得很好。 X-code 的静态分析器最适合在运行代码之前检查内存泄漏。
也检查此链接
我们为什么要发布?
Memory leaks wont cause you any sort of problem except one.
If you have alot of memory leakage and the assigned memory for your app gets full then your app will crash. and except this situation your app will run perfectly fine. X-code's static analyzer is best for checking memory leaks before you run your code.
check this link too
Why should we release?