C# 中 If-Else 简写

Harshit Jindal 2023年10月12日
  1. C# 中使用三元运算符
  2. C# 中使用嵌套三元运算符
C# 中 If-Else 简写

If-Else 语句用于执行条件代码块。我们在 if 块中指定一个条件。在满足该条件时,执行 if 代码块。

否则,执行 else 代码块。本教程将介绍三元运算符 ?:,即 C# 中的 if-else 简写。

C# 中使用三元运算符

三元运算符之所以得名,是因为它需要三个参数作为输入:条件、if 代码块和 else 代码块。

这三个都包裹在一行简写中,使代码简洁明了。它有助于在极简代码中实现与 if-else 相同的功能。

using System;

class Program {
  public static void Main() {
    int exp1 = 5;
    double exp2 = 3.0;
    bool condition = 5 > 2;
    var ans = condition ? exp1 : exp2;
    Console.WriteLine(ans);
  }
}

输出:

5

在上面的示例中,三元运算符将首先评估给定条件。如果指定条件为 true,我们移动到 exp1,用 ? 分隔条件。否则,我们移动到 exp2,与 exp1 用 : 分隔。

三元运算符的威力并不止于此,因为我们知道 if-else 语句可以嵌套。三元运算符也可以用更少的代码实现相同的目的。

C# 中使用嵌套三元运算符

using System;

class Program {
  public static void Main() {
    int alcoholLevel = 90;
    string message = alcoholLevel >= 100
                         ? "You are too drunk to drive"
                         : (alcoholLevel >= 80 ? "Come on live a little" : "Sober :)");
    Console.WriteLine(message);
  }
}

输出:

Come on live a little

在上面的示例中,我们使用嵌套的三元运算符根据一个人的酒精度输出多条消息,所有消息都打包在一行代码中。

作者: Harshit Jindal
Harshit Jindal avatar Harshit Jindal avatar

Harshit Jindal has done his Bachelors in Computer Science Engineering(2021) from DTU. He has always been a problem solver and now turned that into his profession. Currently working at M365 Cloud Security team(Torus) on Cloud Security Services and Datacenter Buildout Automation.

LinkedIn