objective-c 特性

來源:互聯網
上載者:User

@property先行編譯指令的作用是自動聲明屬性的setter和getter方法
有時候需要聲明相應的執行個體變數
什麼時候需要聲明執行個體變數呢?
看下面一個例子:

@interface Foo: NSObject@property t;@@implmentation Foo- (NSInteger)t{    ...}- (void)setT:(NSInteger)newT{    ...}@end

相應的setter, getter方法怎麼實現呢? 這裡沒有用@systhesize自動合成
如果是這樣的實現
- (void)setT:(NSInteger)newT
{
  self.t = newT;
}
那麼這個函數會一直遞迴調用自身,直到棧溢出。因為self.t的作用就是告訴編譯器使用訪問器訪問name。如果使用了
裸名,編譯器將假設我們直接修改了執行個體變數。
回到這個問題,怎麼實現上面的setter呢?顯然這裡必須要定義一個執行個體變數。
上面的代碼改為:

@interface Foo : NSObject{        NSInteger t;}@property NSInteger t;@end@implementation Foo-(void)setT:(NSInteger)newt{        t = newt;}-(NSInteger)t{    return t;}@end

執行個體變數的名稱是否必須和屬性名稱保持一致呢?答案是否定的.
通常我們為了避免混淆, 會像下面這樣定義:

@interface Foo : NSObject{        NSInteger _t;}@property NSInteger t;@end@implementation Foo@synthesize t=_t;-(void)setT:(NSInteger)newt{        _t = newt;}-(NSInteger)t{    return _t;}@end

這樣在類的內部我們用執行個體變數來訪問.換句話說可以通過@systhesize控制產生的setter, getter方法對哪些執行個體變數起作用。
@systhesize t=_t1;
@systhesize t=_t2;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.