Objective-C學習筆記_記憶體管理(二)

來源:互聯網
上載者:User

標籤:objective-c   ios   記憶體管理   

一、屬性的內部實現原理

assign的屬性內部實現

setter方法:

// setter方法@property (nonatomic, assign) NSString *name;- (void)setName:(NSString *)name{  _name = name;}

getter方法:

// getter方法- (NSString *)name{  return _name;}

觀察下面代碼會出現什麼問題?

NSString *name = [[NSString alloc] initWithFormat:@”張三”];Person *p = [[Person alloc] init];[p setName:name];[name release];NSLog(@”%@”, [p name]); // 如果物件類型使用assign之後,會出現野指標異常[p release];

retain的屬性內部實現

setter方法:

// setter方法@property (nonatomic, retain) NSString *name;- (void)setName:(NSString *)name{  if(_name != name) {    [_name release];    _name = [name retain];  }}

getter方法:

// getter方法- (NSString *)name{  return [[_name retain] autorelease];}

copy的屬性內部實現

setter方法:

// setter?法@property (nonatomic, copy) NSString *name;- (void)setName:(NSString *)name{  if(_name != name) {    [_name release];    _name = [name copy];  }}

getter方法:

// getter方法- (NSString *)name{  return [[_name retain] autorelease];}
二、dealloc內釋放執行個體變數

dealloc是NSObject的?個執行個體方法,與alloc對應,用於回收開闢的記憶體空間。這個?法在對象引用計數為0時,由系統自動調用通常我們在dealloc中釋放類的執行個體變數。

dealloc使用

以Person.m為樣本,代碼如下:

- (void)dealloc{  [_name release];  //釋放setter?法泄露的執行個體變數  [super dealloc];}

注意:

  • 永遠不要?動調用dealloc。
  • 在dealloc?法的最後一?,必須寫[super dealloc];
三、便利構造器?法的實現原理

以Person.m為樣本,代碼如下:

+ (id)personWithName:(NSString *)name{  Person *p = [[Person alloc] initWithName:name];  return [p autorelease];}

return [p autorelease];是最完美的解決?案,既不會記憶體泄露,也不會產?野指標。

四、collection的記憶體管理

collection就是NSArray,NSDictionary,NSSet…等容器類,collection會自主管理?己內部的元素。

collection記憶體的?主管理,加入collection中的對象會被retain,移除出collection的對象會被release,collection被釋放會對內部所有對象release。

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

Objective-C學習筆記_記憶體管理(二)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.