c# switch能用于枚举吗

c#
1022
2024/12/1 12:23:22
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

是的,C# 中的 switch 语句可以用于枚举(enum)。当使用枚举时,switch 语句可以根据枚举值的不同执行不同的代码块。以下是一个简单的示例:

using System;

namespace SwitchEnumExample
{
    enum Animal
    {
        Dog,
        Cat,
        Bird,
        Fish
    }

    class Program
    {
        static void Main(string[] args)
        {
            Animal myAnimal = Animal.Dog;

            switch (myAnimal)
            {
                case Animal.Dog:
                    Console.WriteLine("You have a dog.");
                    break;
                case Animal.Cat:
                    Console.WriteLine("You have a cat.");
                    break;
                case Animal.Bird:
                    Console.WriteLine("You have a bird.");
                    break;
                case Animal.Fish:
                    Console.WriteLine("You have a fish.");
                    break;
                default:
                    Console.WriteLine("Unknown animal.");
                    break;
            }
        }
    }
}

在这个示例中,我们定义了一个名为 Animal 的枚举,并在 Main 方法中使用 switch 语句根据 myAnimal 变量的值执行不同的代码块。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c#文件操作错误如何避免