首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

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

2013-12-20 
4 7.OC13-内存管理4-autorelease////? Student.m//? OC10-内存管理2-set方法的内存管理////? Created by q

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

?

?

热点排行