gpt4 book ai didi

c# - 两种风格的 C# switch-return 语句,有什么区别?

转载 作者:太空宇宙 更新时间:2023-11-03 12:21:29 24 4
gpt4 key购买 nike

<分区>

我正在处理遗留 C# 代码,并且看到两种样式的 switch 语句。我有 Python 背景,所以我无法理解这两种 switch 使用之间的细微差别

示例#1

public string SwitchExample1(int value)
{
switch(value)
{
case 1: return "a";
case 2: return "b";
default: return "c";
}
}

示例#2

public string SwitchExample2(int value)
{
switch(value)
{
case 1: return "a";
case 2: return "b";
}

return "c";
}

在功能上它们是相同的 - 当 value != 1 && value != 2

时它们都返回“c”

这仅仅是风格上的差异吗?或者是否有最佳实践要求您优先使用其中一个?

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