| 運算子 | 功能 | 範例 |
|---|---|---|
| + | 加 | a + b |
| - | 減 | a - b |
| * | 乘 | a * b |
| / | 除 | a / b |
| % | 取餘數 | a % b |
基本資料型態 (basic data type) 都可以做算術運算,舉例如下
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int a = 1;
int b = 5;
double c = 2.2;
double d = 5.4;
int e = a + b;
NSLog(@"%d", e);
double f = a + b;
NSLog(@"%f", f);
int i = a + c;
NSLog(@"%d", i);
double j = a + c;
NSLog(@"%f", j);
int k = c + d;
NSLog(@"%d", k);
double l = c + d;
NSLog(@"%f", l);
[pool drain];
return 0;
}
/* 《程式語言教學誌》的範例程式
http://pydoing.blogspot.com/
檔名:arithemetic.m
功能:Objective-c 程式範例
作者:張凱慶
時間:西元 2013 年 4 月 */編譯執行,結果如下

| 中英文術語對照 | |
|---|---|
| 運算元 | operand |
| 運算子 | operator |
| 基本資料型態 | basic data type |
您可以繼續參考
運算式
相關目錄
Objective-C 快速導覽
Objective-C 教材
首頁
參考資料
Programming with Objective-C: About Objective-C
Programming with Objective-C: Working with Objects
沒有留言:
張貼留言