Objective-C 快速導覽 - 條件運算

條件運算子 (operator) 是 Objective-C 語言裡唯一的三元運算子 ?: ,需要三個運算元 (operand) ,三個運算元都可為運算式,形式如下




若 expr1 為真,運算結果會是 expr2 的值,若為假,運算結果則是 expr3 的值。


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

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

    int a = 22;
    int b = 34;
    
    NSLog(@"a = %d", a);
    NSLog(@"b = %d", b);
    NSLog(@"%d 較大", a > b ? a : b);

    [pool drain];
    return 0;
}

/* 《程式語言教學誌》的範例程式
   http://pydoing.blogspot.com/
   檔名:conditional.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

沒有留言: