[Objective-C] 005_ Category(類別)

來源:互聯網
上載者:User

標籤:

  Category的實際作用就是為已有的類來添加方法。為現有的類添加的方法可以先不用實現,在需要的時候再實現也是可以的。在我們的實際代碼中如何來實現Category的呢?我們上篇的Person 類為例。

/////////////////    .h    ////////////////#import <Foundation/Foundation.h> @interface Person : NSObject @property (nonatomic,copy)NSString *name;@property (nonatomic,assign)int age;@property (nonatomic,assign)NSString *sex; - (void)printInfo;@end  /////////////////    .m    ////////////////#import "Person.h" @implementation Person@synthesize name = _name,sex = _sex;@synthesize age = _age; - (void)printInfo {    NSLog(@"我的名字叫:%@ 今年%d歲 我是一名%@ %@",self.name,self.age,self.sex,NSStringFromClass([self class]));}@end

    

  現在現有的Person 類中並沒有driving的方法,那我們就來為它添加driving,我們建立一個.h和.m檔案,名稱叫做Person+Driving(類名+方法名),這樣命名有一個好處,就是一眼便知道為哪一個類添加了什麼方法。

///////////////////     .h    ////////////////////// #import <Foundation/Foundation.h>#import "Person.h"@interface Person(Person_Driving)- (void)driving;@end///////////////////     .m    ////////////////////// #import "Person+Driving.h"@implementation Person(Person_Driving)- (void)driving {    NSLog(@"昨晚特斯拉沒充電,今天開的是寶馬X6");}@end

  

  我們現在來看下測AppDelegate中添加測試。

#import "AppDelegate.h"#import "Teacher.h"#import "Student.h"#import "Person.h"#import "Cleaner.h"#import "Person+Driving.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {        Person *p = [[Person alloc] init];    p.name = @"隔壁老王";    p.age = 36;    p.sex = @"男";        [p printInfo];    [p driving];            return YES;}@end

  

測試結果:

2015-06-07 22:34:22.247 Attendance[15791:2195987] 我的名字叫:隔壁老王今年36我是一名男 Person

2015-06-07 22:34:22.248 Attendance[15791:2195987] 昨晚特斯拉沒充電,今天開的是寶馬X6

 

 

 

 

本站文章為 寶寶巴士 SD.Team 原創,轉載務必在明顯處註明:(作者官方網站: 寶寶巴士 ) 
轉載自【寶寶巴士SuperDo團隊】 原文連結: http://www.cnblogs.com/superdo/p/4559609.html

 

 

[Objective-C] 005_ Category(類別)

相關文章

聯繫我們

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