舉一例如下
#import <Foundation/Foundation.h> int ga = 1122; @interface Demo: NSObject - (void) do_something; @end @implementation Demo - (void) do_something { extern int ga; ga = 25; NSLog(@"%i", ga); } @end int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Demo *demo = [[Demo alloc] init]; [demo do_something]; NSLog(@"%i", ga); [pool drain]; return 0; } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:classdemo09.m 功能:Objective-c 程式範例 作者:張凱慶 時間:西元 2013 年 4 月 */
編譯執行,結果如下
中英文術語對照 | |
---|---|
變數 | variable |
全域變數 | local variable |
類別 | class |
函數 | function |
您可以繼續參考
類別
相關目錄
Objective-C 快速導覽
Objective-C 教材
首頁
參考資料
Programming with Objective-C: About Objective-C
Programming with Objective-C: Working with Objects
沒有留言:
張貼留言