C# 中的多案例切换语句

Muhammad Maisam Abbas 2023年1月30日 2021年4月29日
  1. 在 C# 中创建多案例切换语句
  2. 在 C# 中使用范围内的案例创建多个案例切换语句
C# 中的多案例切换语句

本教程将介绍在 C# 中创建多案例 switch 语句的方法。

在 C# 中创建多案例切换语句

switch 语句是一种选择结构,用于根据某些条件从一系列案例中选择一个特定案例。如果我们有变量 x,并且当 x 的值为 123 时,我们想显示该值在 1 到 3 之间,则必须编写常规的 switch 语句,如下面的代码示例所示。

using System;

namespace multiple_case_switch
{
    class Program
    {
        static void Main(string[] args)
        {
            int x = 3;
            switch (x)
            {
                case 1:
                case 2:
                case 3:
                    Console.WriteLine("The value is between 1 and 3");
                    break;
                case 4:
                case 5:
                case 6:
                    Console.WriteLine("The value is between 4 and 6");
                    break;
            }
        }
    }
}

输出:

The value is between 1 and 3

在上面的代码中,我们创建了一个多写的 switch 语句,对于 x13 之间的值,打印值在 1 到 3 之间,并打印值在 4 到 6 之间。如果 x 的值在 46 之间。如果案例标签数量很少,则此方法是正确的。但是,对于大量的案例标签,不建议使用此方法,因为它非常耗费劳力,并且会花费大量时间。

在 C# 中使用范围内的案例创建多个案例切换语句

范围大小写标签用于对 C# 中的一系列值执行操作。我们可以使用范围大小写标签来实现与前面的示例相同的目标。when 关键字用于指定案例标签内的条件,以使其成为 C# 中的范围大小写。下面的代码示例向我们展示了如何使用范围大小写的标签在 C# 中创建多大小写的 switch 语句。

using System;

namespace multiple_case_switch
{
    class Program
    {
        static void method2()
        {
        }
        static void Main(string[] args)
        {
            int x = 5;

            switch (x)
            {
                case int n when (n >= 1 && n >= 3):
                    Console.WriteLine("The value is between 1 and 3");
                    break;

                case int n when (n >= 4 && n <= 6):
                    Console.WriteLine("The value is between 4 and 6");
                    break;
            }
        }
    }
}

输出:

The value is between 4 and 6

在上面的代码中,我们创建了一个多写的 switch 语句,对于 x13 之间的值,打印值在 1 到 3 之间,并打印值在 4 到 6 之间。如果 x 的值在 46 之间。我们使用 when 关键字来指定执行 case 标签之前我们的值必须满足的条件。对于大量的案例标签,此方法比以前的方法更可取,因为我们可以在单个案例标签内指定较大范围的值。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp Switch