/*
在这个类中.m文件中就可以使用MRC
的方式来进行手动内存管理
开发中常用于一些不支持ARC的三方库
网络的解析 网络下载 多线程图片
ASI三方库就不支持ARC 仍然有人用
SDWebImage 异步加载图片的三方库等
*/
#import "Student.h"
//xxx.m导入某一个类
#import "Money.h"
@implementation Student
-(id)init
{
self = [super init];
if(self)
{
_money = [[Money alloc] init];
}
return self;
}
-(void)dealloc
{
[_money release];//用
[super dealloc];//MRC
} |
|