Objective-C 快速導覽 - super 關鍵字

super 關鍵字 (keyword) 用在子類別 (subclass) 中,用以傳遞訊息給父類別 (superclass) 。



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

@interface Demo: NSObject

- (void) do_something;

@end

@implementation Demo

- (void) do_something
{
    NSLog(@"Hello, 9527!");
}

@end

@interface Demo2: Demo
@end

@implementation Demo2

- (void) do_something
{
    [super do_something];
    NSLog(@"Hello, John!");
}

@end

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 
    Demo2 *demo = [[Demo2 alloc] init];
    [demo do_something];
 
    [pool drain];
    return 0;
}

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


編譯執行,結果如下



中英文術語對照
關鍵字keyword
子類別subclass
父類別superclass


您可以繼續參考
類別


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



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

沒有留言: