首页 > 其他 > 详细

Objective-C - ARC(Automatic Reference Counting)自动引用技术详解

时间:2015-04-23 10:59:40      阅读:99      评论:0      收藏:0      [点我收藏+]

ARC特点与判断准则

/*
 ARC的判断准则:只要没有强指针指向对象,就会释放对象


 1.ARC特点
 1> 不允许调用release、retain、retainCount
 2> 允许重写dealloc,但是不允许调用[super dealloc]
 3> @property的参数
  * strong :成员变量是强指针(适用于OC对象类型)
  * weak :成员变量是弱指针(适用于OC对象类型)
  * assign : 适用于非OC对象类型
 4> 以前的retain改为用strong

 指针分2种:
 1> 强指针:默认情况下,所有的指针都是强指针 __strong
 2> 弱指针:__weak

 */

int main()
{
    Dog *d = [[Dog alloc] init];

    Person *p = [[Person alloc] init];
    p.dog = d;

    d = nil;

    NSLog(@"%@", p.dog);

    return 0;
}

void test()
{
    // 错误写法(没有意义的写法)
    __weak Person *p = [[Person alloc] init];


    NSLog(@"%@", p);

    NSLog(@"------------");
}
@class Dog;

@interface Person : NSObject

@property (nonatomic, strong) Dog *dog;


@property (nonatomic, strong) NSString *name;

@property (nonatomic, assign) int age;

@end
@implementation Person

- (void)dealloc
{
    NSLog(@"Person is dealloc");

    // [super dealloc];
}

@end
@interface Dog : NSObject

@end
@implementation Dog
- (void)dealloc
{
    NSLog(@"Dog is dealloc");
}
@end

ARC循环引用问题


/**
 *   当两端循环引用的时候,解决方案:
 1> ARC
 1端用strong,另1端用weak

 2> 非ARC
 1端用retain,另1端用assign
 */
int main()
{
    Person *p = [[Person alloc] init];


    Dog *d = [[Dog alloc] init];
    p.dog = d;
    d.person = p;

    return 0;
}
@class Dog;

@interface Person : NSObject

@property (nonatomic, strong) Dog *dog;

@end
@implementation Person

- (void)dealloc
{
    NSLog(@"Person--dealloc");
}

@end
@class Person;

@interface Dog : NSObject

@property (nonatomic, weak) Person *person;

@end
@implementation Dog
- (void)dealloc
{
    NSLog(@"Dog--dealloc");
}
@end

Objective-C - ARC(Automatic Reference Counting)自动引用技术详解

原文:http://blog.csdn.net/wangzi11322/article/details/45217527

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!