在网上忽然看到这个,对于这个说不上来,编程这么长时间,那么就亲自试验了下,首先创建一个类myclassroom,声明一个类方法(也就是静态方法可以去这里面有详细的介绍http://www.2cto.com/kf/201311/259250.html),然后创建一个
+(id)myclassinitwithnumber:(nsinteger)studentnumber {
myclassroom *classroom = 【【myclassroom alloc】init】;
classroom.number = studentnumber;;
return classroom;
}
在别的类中调用,
【myclassroom myclassinitwithnumber:20】;
使用xcode 自带的软件菜单 xcode open developer tool instruments 进去以后选择打开 leak 查看是否有内存泄露,事实证明这个还是会内存泄露,仔细的查看会发现,在没有开启arc ,内存的释放规则就是谁创建谁释放,在上面我们构造这个类方法啊的时候在实现这个类方法中我们并没有遵守这个规则,
+(id)myclassinitwithnumber:(nsinteger)studentnumber {
myclassroom *classroom = 【【【myclassroom alloc】init】autoreless】;
classroom.number = studentnumber;;
return classroom;
}
改成这样 在类方法的实现中添加一个 autoreless 这样就方便了在别的类中调用这个类方法 返回的对象不需要你去释放。 这样我觉得 内存的释放,是没有捷径可走的,除非用arc,不然一定要遵守 谁创建谁释放。