gpt4 book ai didi

c# - 为什么 Visual Studio 2019 推荐使用 switch 表达式而不是 switch 语句?

转载 作者:行者123 更新时间:2023-12-04 00:20:13 25 4
gpt4 key购买 nike

Visual Studio 2019 建议将我编写的 switch 语句转换为 switch expression(两者都包含在下面用于上下文)。

对于这样的简单示例,将其编写为表达式是否有任何技术或性能优势?例如,这两个版本的编译方式是否不同?

声明

switch(reason)
{
case Reasons.Case1: return "string1";
case Reasons.Case2: return "string2";
default: throw new ArgumentException("Invalid argument");
}

表达式
return reason switch {
Reasons.Case1 => "string1",
Reasons.Case2 => "string2",
_ => throw new ArgumentException("Invalid argument")
};

最佳答案

在您提供的示例中,实际上并没有太多内容。然而,switch 表达式对于一步声明和初始化变量很有用。例如:

var description = reason switch 
{
Reasons.Case1 => "string1",
Reasons.Case2 => "string2",
_ => throw new ArgumentException("Invalid argument")
};

在这里我们可以立即声明和初始化 description。如果我们使用 switch 语句,我们必须这样说:
string description = null;
switch(reason)
{
case Reasons.Case1: description = "string1";
break;
case Reasons.Case2: description = "string2";
break;
default: throw new ArgumentException("Invalid argument");
}

目前 switch 表达式的一个缺点(至少在 VS2019 中)是你不能在单个条件上设置断点,只能在整个表达式上设置断点。但是,使用 switch 语句,您可以在单个 case 语句上设置断点。

关于c# - 为什么 Visual Studio 2019 推荐使用 switch 表达式而不是 switch 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61247303/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com