objective-c – 如何检查对象是否已释放?

前端之家收集整理的这篇文章主要介绍了objective-c – 如何检查对象是否已释放?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要能够检查我是否已经在 objective-c中发布了一个变量.我试过检查它是否变为null:
//Checks if buildview is null and returns respective output
if(BuildView == NULL)
    NSLog(@"Build View Value (pointer): Null");
else
    NSLog(@"Build View Value (pointer): Not Null");

//allocates memory and initalizes value
BuildView = [[UIView alloc] initWithFrame:CGRectMake(0,10,10)];

//Checks if buildview is null and returns respective output again
if(BuildView == NULL)
    NSLog(@"Build View Value (pointer): Null");
else
    NSLog(@"Build View Value (pointer): Not Null");

//Releases the view
[BuildView release];

//Checks if buildview is null and returns respective output again
if(BuildView == NULL)
    NSLog(@"Build View Value (pointer): Null");
else
    NSLog(@"Build View Value (pointer): Not Null");

结果是:

Build View Value (pointer): Null
Build View Value (pointer): Not Null
Build View Value (pointer): Not Null

有没有更简单的方法来检查它是否被解除分配?

解决方法

你可能意味着解除分配(被破坏),而不是被释放.被释放并不意味着被释放,这是引用内存管理的重点.被释放不是一个国家,你无法检查它;被摧毁是.

如果你的意思是解除分配,那么不,没有.它被称为弱引用,而Objective-C没有它们用于引用计数.当一个对象被释放时,对它的指针不会自动执行任何操作;他们成了悬空指针.

一种技术是让对象在解除分配期间发送通知,以便保存指针的所有内容都可以将其重置为nil.

通常,您必须以一种方式设计程序,即在调用它之后不再使用对象指针.在您给出的示例代码中,除了分配新值之外,不得再使用BuildView进行任何其他操作.

原文链接:https://www.f2er.com/c/112026.html

猜你在找的C&C++相关文章