• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Yesi-悦思
"(program(computers) == *art) ? so : what" 修身岂为名传世,作事惟思利及人
博客园    首页    新随笔    联系   管理    订阅  订阅

内存管理4-Autoreleasepool

自动释放池是OC里面的一种内存回收机制,一般可以将一些临时变量添加到自动释放池中,统一回收释放,当自动释放池销毁时,池里面的所有对象都会调用一次release,也就是计数器会减1,但是自动释放池被销毁了,里面的对象并不一定会被销毁。

OC对象发送一条autorelease消息,就会把这个对象添加到最近的自动释放池中也就是栈顶释放池中, Autorelease实际上是把对release的调用延迟了,对于每一次autorelease,系统只是把对象放入了当前的autorelease poo(栈顶释放池中)l中,当pool被释放时,pool中所有的对象都会被调用release。

 

----------------------------------------------------

Autorelease will not change the Object counter,just throw them into a pool.

When destroy the pool?

}

-------------------------------------------

Way of writing

1

main()

{

@autorelease{

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

[stu autorelease];

Student *stu1=[[Student alloc]init];

[Stu1=autorelease];

}

return 0;

}

2           //Most common used

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

Student *stu1=[[[Student alloc]init]autorelease];

-------------------------------------------

 //Create Autoreleasepool

1. iOS 5.0 after

@ autoreleasepool{

//code here

}

2.iOS 5.0 before

NSAutoreleasePool *pool=[[NSAutoreleasePool alloc]init];

//code here

[pool release];

// Or [pool drain];  Only have difference in Mac development between release and //drain.

-------------------------------------------------

 //Another clever use of autorelease

//Create a static method to  speedly create an object

//Student.h ( Method name is the same as class name by default)

//+(id)student;

//+(Student)student;

//Student.m

+(id)student{

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

return stu;

}

main(){

autoreleasepool{

Student *stu=[Student student]

}

}

//latent rules

//iOS Static method/Object actually don't need developers to manage memory.

//They do autorelease inside themselves.

//So if you create a static method yourself ,you'd better guarantee it can autorelease.

-----------------------------------

//Create attribute for a class

//Student.h

@interface Student:NSObject

@property (nonatomic,assign) int age;

+(id)studentWithAge:(int)age;

@end

//Student.m

+(id)studentWithAge:(int)age{

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

//Student *stu=[Student student];

//Student *stu=[self student]; //如何判别self指向谁?看谁调用studentWithAge

//静态方法,类名调用,当前调用这个方法的某个东西(对象,类)

//动态对象,(对象)

stu.age=age;

return stu;

}

---------------------------------------

questions

1 Final student method

+(id)student{

return [[[Student alloc]init]autorelease];

}

2

 

1.在ARC下,不能使用 [[ NSAutoreleasePool alloc ] init ](在5.0以前可以使用),而应该使用@autoreleasepool.(垃圾回收机制是完全不用我们释放内存,由开发工具来管理内存)

 

2.不要把大量循环放在autoreleasepool中,这样会造成内存峰值上升,因为里面创建的对象要等释放池销毁了才能释放,这种情况应该手动管理内存。(崩了好不)

 

3.尽量避免大内存使用该方法,对于这种延迟释放机制,尽量少用。(撑了好不)

 

4.SDK中利用静态方法创建并返回的对象都已经autorelease,不需要我们自己手动release。

 

但是通过[[NSNumber alloc]initWithInt:10]创建的对象需要release。

 

posted @ 2015-05-08 13:48  悦思  阅读(210)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3