Objective-C 快速導覽 - 多個參數的方法

方法 (method) 識別字 (identifier) 後面一個冒號接一個參數 (parameter) ,需要有多個參數的時候就視情況增加冒號數,通常冒號前會增加其他識別字,例如

- (int) sum: (int) pa with: (int) pb


此例方法名稱為 sum:with: ,需要兩個參數,參數 papb 及回傳值 (return value) 的型態都是整數。


舉一完整例子如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#import <Foundation/Foundation.h>
 
@interface Demo: NSObject
{
 int a;
 int b;
}
 
@property int a, b;
 
- (int) do_something: (int) pa and: (int) pb;
 
@end
 
@implementation Demo
 
@synthesize a, b;
 
- (int) do_something
{
    return a + b;
}
 
- (int) do_something: (int) pa and: (int) pb
{
 return pa + pb;
}
 
@end
 
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  
    Demo *demo = [[Demo alloc] init];
 NSLog(@"%i", [demo do_something: 11 and: 22]);
  
    [pool drain];
    return 0;
}
 
/* 《程式語言教學誌》的範例程式
   檔名:classdemo04.m
   功能:Objective-c 程式範例
   作者:張凱慶
   時間:西元 2013 年 4 月 */



編譯執行,結果如下



中英文術語對照
方法method
識別字identifier
參數parameter
回傳值return value


您可以繼續參考
類別


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



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

沒有留言: