Objective-C description方法 SEL類型

來源:互聯網
上載者:User

標籤:

description方法

#import "Person.h"@implementation Person- (void) setAge : (int) age {    _age = age;}/** 決定了執行個體對象的輸出結果 **/- (NSString *) description {    return [NSString stringWithFormat : @"age=%i", _age];}/** 決定了類對象的輸出結果 **/+ (NSString *) description {    return @"ABC";}@end//預設情況下(不重寫) 使用NSLog和%@輸出對象時 結果是: <類名: 記憶體位址>//會調用對象的-description方法//拿到-description方法的傳回值(NSString *)顯示到螢幕上//-description方法預設返回的是"類名 + 記憶體位址";//便於觀察結果 一般重寫父類的-description方法

SEL類型

1.方法的儲存位置

每個類的方法列表都儲存在類對象中

每個方法都有一個與之對應的SEL類型的對象

根據一個SEL對象就可以找到方法的地址 進而調用方法

2.SEL對象的建立

SEL s = @selector(方法名);

SEL s2 = NSSelectorFromString(@"test");

3.SEL對象的其他用法

將SEL對象轉為NSString對象

NSString *str = NSStringFromSelector(@selector(方法名));

根據SEL調方法

[p performSelector : @selector(方法名)];

[p performSelector : @selector(方法名) withObject : 實際參數];

[self performSelector : _cmd]//會引發死迴圈 _cmd代表著當前方法

Objective-C description方法 SEL類型

相關文章

聯繫我們

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