C# 8 switch 表达式,具有相同结果的多个案例
C# 8 switch expression with multiple cases with same result
如何编写 switch 表达式以支持返回相同结果的多种情况?
对于版本 8 之前的 C#,开关可以这样写:
var switchValue = 3;
var resultText = string.Empty;
switch (switchValue)
{
case 1:
case 2:
case 3:
resultText = "one to three";
break;
case 4:
resultText = "four";
break;
case 5:
resultText = "five";
break;
default:
resultText = "unkown";
break;
}
当我使用 C# version 8 时,表达式语法是这样的:
var switchValue = 3;
var resultText = switchValue switch
{
1 => "one to three",
2 => "one to three",
3 => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
所以我的问题是:如何将案例 1、2 和 3 变成一个 switch-case-arm,这样值就不需要重复了?
根据“Rufus L”的建议更新:
对于我给出的示例,这有效。
var switchValue = 3;
var resultText = switchValue switch
{
var x when (x >= 1 && x <= 3) => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
但这并不是我想要完成的。这仍然只是一个案例(有过滤条件),而不是多个案例产生相同的右手结果。
我着手安装它,但我还没有找到一种方法来使用新语法为单个开关部分指定多个单独的 case 标签。
但是,您可以创建一个捕获值的新变量,然后使用一个条件来表示应该具有相同结果的情况:
var resultText = switchValue switch
{
var x when
x == 1 ||
x == 2 ||
x == 3 => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
如果您要测试的案例很多,这实际上更简洁,因为您可以在一行中测试一系列值:
var resultText = switchValue switch
{
var x when x > 0 && x < 4 => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
遗憾的是,相对于 switch 语句语法,这似乎是 switch 表达式语法中的一个缺点。正如其他张贴者所建议的那样,相当笨拙的 var
语法是您唯一的选择。
所以你可能一直希望你可以写:
switchValue switch {
Type1 t1:
Type2 t2:
Type3 t3 => ResultA, // where the ResultX variables are placeholders for expressions.
Type4 t4 => ResultB,
Type5 t5 => ResultC
};
相反,您需要在下面编写相当笨拙的代码,并喷上 typename:
switchValue switch {
var x when x is Type1 || x is Type2 || x is Type 3 => ResultA,
Type4 t4 => ResultB,
Type5 t5 => ResultC
};
在这样一个简单的示例中,您可能会忍受这种尴尬。但是更复杂的例子不太适合。事实上,我的例子实际上是从我们自己的代码库中提取的一个例子的简化,我希望将一个 switch 语句转换为一个 switch 表达式,其中大约有六个结果但有十几个类型案例。结果显然不如 switch 语句可读。
我的观点是,如果 switch 表达式需要共享结果并且长度超过几行,那么您最好坚持使用 switch 语句。嘘!它比较冗长,但可能是对你队友的善意。
ResultType tmp;
switch (switchValue) {
case Type1 t1:
case Type2 t2:
case Type3 t3:
tmp = ResultA;
break;
case Type4 t4:
tmp = ResultB;
break;
case Type5 t5:
tmp = ResultC;
break;
};
return tmp;
如果你的开关类型是标志枚举
[System.Flags]
public enum Values
{
One = 1,
Two = 2,
Three = 4,
Four = 8,
OneToThree = One | Two | Three
}
var resultText = switchValue switch
{
var x when Values.OneToThree.HasFlag(x) => "one to three",
Values.Four => "4",
_ => "unknown",
};
C# 9 支持以下内容:
var switchValue = 3;
var resultText = switchValue switch
{
1 or 2 or 3 => "one, two, or three",
4 => "four",
5 => "five",
_ => "unknown",
};
或者:
var switchValue = 3;
var resultText = switchValue switch
{
>= 1 and <= 3 => "one, two, or three",
4 => "four",
5 => "five",
_ => "unknown",
};
对于旧版本的 C#,我使用以下扩展方法:
public static bool In<T>(this T val, params T[] vals) => vals.Contains(val);
像这样:
var switchValue = 3;
var resultText = switchValue switch
{
var x when x.In(1, 2, 3) => "one, two, or three",
4 => "four",
5 => "five",
_ => "unknown",
};
比when x == 1 || x == 2 || x == 3
简洁一点,比when new [] {1, 2, 3}.Contains(x)
顺序更自然。
如果您仍在使用 C# 8,因此不能像上面的答案那样使用 C# 9 1 or 2 or 3 =>
方法,您也可以采用避免创建额外变量 x
与接受的答案中的 switchValue
具有相同的值(当然这是完全正确的,我只是建议一个替代方案,因为我不喜欢那个额外的 x
)。
var list = new List<int> { 3, 4, 5 };
var resultText = switchValue switch
{
1 => "one",
2 => "two",
_ when list.Contains(switchValue) => "three to five",
_ => "unknown",
};
显然,您可以将 _ when
之后的条件替换为任何内容,例如 switchValue == 3 || switchValue == 4 || switchValue == 5
;答案的重点是显示 _ when
位。
我只是想到 _ when =>
意思是“其他时候”,_ =>
意思是“其他”。
C#9 解决了这个多案例问题:
var result = foo switch
{
1 => ...,
2 or 3 => ...,
_ => throw ...
};
如何编写 switch 表达式以支持返回相同结果的多种情况?
对于版本 8 之前的 C#,开关可以这样写:
var switchValue = 3;
var resultText = string.Empty;
switch (switchValue)
{
case 1:
case 2:
case 3:
resultText = "one to three";
break;
case 4:
resultText = "four";
break;
case 5:
resultText = "five";
break;
default:
resultText = "unkown";
break;
}
当我使用 C# version 8 时,表达式语法是这样的:
var switchValue = 3;
var resultText = switchValue switch
{
1 => "one to three",
2 => "one to three",
3 => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
所以我的问题是:如何将案例 1、2 和 3 变成一个 switch-case-arm,这样值就不需要重复了?
根据“Rufus L”的建议更新:
对于我给出的示例,这有效。
var switchValue = 3;
var resultText = switchValue switch
{
var x when (x >= 1 && x <= 3) => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
但这并不是我想要完成的。这仍然只是一个案例(有过滤条件),而不是多个案例产生相同的右手结果。
我着手安装它,但我还没有找到一种方法来使用新语法为单个开关部分指定多个单独的 case 标签。
但是,您可以创建一个捕获值的新变量,然后使用一个条件来表示应该具有相同结果的情况:
var resultText = switchValue switch
{
var x when
x == 1 ||
x == 2 ||
x == 3 => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
如果您要测试的案例很多,这实际上更简洁,因为您可以在一行中测试一系列值:
var resultText = switchValue switch
{
var x when x > 0 && x < 4 => "one to three",
4 => "four",
5 => "five",
_ => "unknown",
};
遗憾的是,相对于 switch 语句语法,这似乎是 switch 表达式语法中的一个缺点。正如其他张贴者所建议的那样,相当笨拙的 var
语法是您唯一的选择。
所以你可能一直希望你可以写:
switchValue switch {
Type1 t1:
Type2 t2:
Type3 t3 => ResultA, // where the ResultX variables are placeholders for expressions.
Type4 t4 => ResultB,
Type5 t5 => ResultC
};
相反,您需要在下面编写相当笨拙的代码,并喷上 typename:
switchValue switch {
var x when x is Type1 || x is Type2 || x is Type 3 => ResultA,
Type4 t4 => ResultB,
Type5 t5 => ResultC
};
在这样一个简单的示例中,您可能会忍受这种尴尬。但是更复杂的例子不太适合。事实上,我的例子实际上是从我们自己的代码库中提取的一个例子的简化,我希望将一个 switch 语句转换为一个 switch 表达式,其中大约有六个结果但有十几个类型案例。结果显然不如 switch 语句可读。
我的观点是,如果 switch 表达式需要共享结果并且长度超过几行,那么您最好坚持使用 switch 语句。嘘!它比较冗长,但可能是对你队友的善意。
ResultType tmp;
switch (switchValue) {
case Type1 t1:
case Type2 t2:
case Type3 t3:
tmp = ResultA;
break;
case Type4 t4:
tmp = ResultB;
break;
case Type5 t5:
tmp = ResultC;
break;
};
return tmp;
如果你的开关类型是标志枚举
[System.Flags]
public enum Values
{
One = 1,
Two = 2,
Three = 4,
Four = 8,
OneToThree = One | Two | Three
}
var resultText = switchValue switch
{
var x when Values.OneToThree.HasFlag(x) => "one to three",
Values.Four => "4",
_ => "unknown",
};
C# 9 支持以下内容:
var switchValue = 3;
var resultText = switchValue switch
{
1 or 2 or 3 => "one, two, or three",
4 => "four",
5 => "five",
_ => "unknown",
};
或者:
var switchValue = 3;
var resultText = switchValue switch
{
>= 1 and <= 3 => "one, two, or three",
4 => "four",
5 => "five",
_ => "unknown",
};
对于旧版本的 C#,我使用以下扩展方法:
public static bool In<T>(this T val, params T[] vals) => vals.Contains(val);
像这样:
var switchValue = 3;
var resultText = switchValue switch
{
var x when x.In(1, 2, 3) => "one, two, or three",
4 => "four",
5 => "five",
_ => "unknown",
};
比when x == 1 || x == 2 || x == 3
简洁一点,比when new [] {1, 2, 3}.Contains(x)
顺序更自然。
如果您仍在使用 C# 8,因此不能像上面的答案那样使用 C# 9 1 or 2 or 3 =>
方法,您也可以采用避免创建额外变量 x
与接受的答案中的 switchValue
具有相同的值(当然这是完全正确的,我只是建议一个替代方案,因为我不喜欢那个额外的 x
)。
var list = new List<int> { 3, 4, 5 };
var resultText = switchValue switch
{
1 => "one",
2 => "two",
_ when list.Contains(switchValue) => "three to five",
_ => "unknown",
};
显然,您可以将 _ when
之后的条件替换为任何内容,例如 switchValue == 3 || switchValue == 4 || switchValue == 5
;答案的重点是显示 _ when
位。
我只是想到 _ when =>
意思是“其他时候”,_ =>
意思是“其他”。
C#9 解决了这个多案例问题:
var result = foo switch
{
1 => ...,
2 or 3 => ...,
_ => throw ...
};