读书人

四 7.OC13-内存管理4-autorelease

发布时间: 2013-12-20 17:03:19 作者: rapoo

4 7.OC13-内存管理4-autorelease

//

//? Student.m

//? OC10-内存管理2-set方法的内存管理

//

//? Created by qwz on 13-12-9.

//? Copyright (c) 2013年 renhe. All rights reserved.

//

?

#import "Student.h"

?

@implementation Student

?

- (void)dealloc{

? ? NSLog(@"%@被销毁", self);

? ? [super dealloc];

}

?

+ (id)student{

? ? Student *stu = [[[Student alloc] init] autorelease];

}

?

@end

?

?

读书人网 >移动开发

热点推荐