Objective-C 快速導覽 - 協定

協定 (protocol) 是一種共通的程式規格,使用 @protocol 指令,這用來宣告方法 (method) 不需實作,採用協定的類別 (class) 須實作非 @optional 的方法, @optional 的方法則可以選擇是否要實作。



舉例如下
#import <Foundation/Foundation.h>

@protocol Test
- (void) do_something;
@optional
- (void) do_something2;
@end

@interface Demo: NSObject <Test>
@end

@implementation Demo

- (void) do_something
{
 NSLog(@"something happened");
}

@end

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    Demo *d = [[Demo alloc] init];
 [d do_something];
 
    [pool drain];
    return 0;
}

/* 《程式語言教學誌》的範例程式
   http://pydoing.blogspot.com/
   檔名:protocol.m
   功能:Objective-c 程式範例
   作者:張凱慶
   時間:西元 2013 年 4 月 */


編譯執行,結果如下



中英文術語對照
協定protocol
方法type
類別class


您可以繼續參考
例外處理
協定
類目


相關目錄
Objective-C 快速導覽
Objective-C 教材
首頁



參考資料
Programming with Objective-C: About Objective-C
Programming with Objective-C: Working with Objects

沒有留言: