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
??