C# 中具有多个条件的 if 语句

Abdullahi Salawudeen 2023年12月11日
  1. C# 中使用运算符
  2. C# 中使用具有多个逻辑条件的 if 语句
  3. C# 中的三元条件运算符
C# 中具有多个条件的 if 语句

条件语句用于控制程序执行的流程,并根据条件是否为真来执行。C# 中有两个条件分支语句:ifswitch 语句。

本文将介绍在 C# 中使用带有多个条件的 if 语句来返回语句。进一步的讨论可通过 this reference 获得。

C# 中使用运算符

运算符用于对 C# 中的变量和值执行不同的操作。运算符可分为四类:算术、赋值、比较和逻辑运算符。

比较运算符允许在 C# 中比较两个值。C# 中有六个比较运算符。

< 少于 a < b
> 大于 a > b
== 等于 a == b
<= 小于或等于 a <= b
>= 大于或等于 a >= b
!= 不等于 a != b

逻辑运算符具有三个比较。

  1. 逻辑与 (&&) - 如果两个比较语句都为真,则返回真。否则,它返回 false。
  2. 逻辑或 (||) - 如果一个或两个比较语句为真,则返回真。只有当两个比较语句都为假时,它才返回假。
  3. 逻辑非 (!) - 否定任何比较语句或参数。如果结果为假,则返回真,反之亦然。

我们可以单独或组合使用逻辑运算符。

C# 中使用具有多个逻辑条件的 if 语句

代码片段:

using System;

class demo {
  public static void Main() {
    string a = "Abdul", b = "Salawu", c = "Stranger", A2 = "Age";
    bool checkbox = true;
    string columnname = "Abdullahi Salawudeen";

    if (columnname != a && columnname != b && columnname != c && (checkbox || columnname != A2)) {
      Console.WriteLine(
          "Columnname is neither equal to a nor b nor c nor A2, but the check box is checked");
    }
    // the else statement is necessary to stop the program from executing infinitely
    else {
      Console.WriteLine("columnname is unknown and checkbox is false");
    }
  }
}

输出:

Columnname is neither equal to a nor b nor c nor A2, but the checkbox is checked

C# 中的三元条件运算符

条件运算符 ?: 也称为三元条件运算符,其工作方式类似于 if 语句。它计算一个布尔表达式并返回两个表达式之一的结果。

如果布尔表达式为真,则返回第一个语句(即 ? 之后的语句),否则返回第二个语句(即 : 后的语句)。进一步的讨论可通过此参考获得。

语法:

condition ? consequent : alternative;

下面是使用具有多个逻辑条件的三元运算符的代码示例。

using System;

class demo {
  public static void Main() {
    string a = "Abdul", b = "Salawu", c = "Stranger", A2 = "Age";
    bool checkbox = false;
    string columnname = A2;
    string x =
        (columnname != a && columnname != b && columnname != c && (checkbox || columnname != A2))
            ? "Columnname is neither equal to a nor b bor c nor A2 nor is the check box true"
            : "columnname is unknown and checkbox is false";
    Console.WriteLine(x);
  }
}

输出:

columnname is unknown and checkbox is false
Abdullahi Salawudeen avatar Abdullahi Salawudeen avatar

Abdullahi is a full-stack developer and technical writer with over 5 years of experience designing and implementing enterprise applications. He loves taking on new challenges and believes conceptual programming theories should be implemented in reality.

LinkedIn GitHub

相关文章 - Csharp Statement