?: 運算子 (C# 參考)

條件運算子 (?:) 是根據布林運算式的值傳回兩個值的其中一個。 以下是條件運算子的語法。

condition ? first_expression : second_expression;

備註

condition 必須判斷值為 true 或 false。 如果 condition 為 true,則會評估 first_expression 並產生結果。 如果 condition 為 false,則會評估 second_expression 並產生結果。 只會評估兩個運算式的其中一個。

first_expression 和 second_expression 必須屬於相同類型,否則必須從其中一種類型隱含轉換為另一種類型。

你可以使用條件運算子更精確地表示可能需要 if-else 建構的計算。 例如,下列程式碼會先使用 if 陳述式,再使用條件運算子將整數分類為正數或負數。

int input = Convert.ToInt32(Console.ReadLine());
string classify;

// if-else construction.
if (input > 0)
    classify = "positive";
else
    classify = "negative";

// ?: conditional operator.
classify = (input > 0) ? "positive" : "negative";

條件運算子是右向關聯。 運算式 a ? b : c ? d : e 會判斷值為 a ? b : (c ? d : e),而不是 (a ? b : c) ? d : e。

條件運算子不能多載。

範例

class ConditionalOp
{
    static double sinc(double x)
    {
        return x != 0.0 ? Math.Sin(x) / x : 1.0;
    }

    static void Main()
    {
        Console.WriteLine(sinc(0.2));
        Console.WriteLine(sinc(0.1));
        Console.WriteLine(sinc(0.0));
    }
}
/*
Output:
0.993346653975306
0.998334166468282
1
*/

請參閱

參考

C# 運算子

if-else (C# 參考)

概念

C# 程式設計手冊

其他資源

C# 參考