可为空的长开关语句在 VS2015 中未产生预期输出
本文关键字:输出 VS2015 语句 开关 | 更新日期: 2023-09-27 18:31:28
在VS2015 Update 1中使用可为空的长开关语句时,我看到了一些奇怪的行为,而在其他Visual Studio版本中没有看到它按预期运行。
class Program
{
static void Main(string[] args)
{
NullableTest(-1);
NullableTest(0);
NullableTest(1);
NullableTest(2);
NullableTest(null);
}
public static void NullableTest(long? input)
{
string switch1;
switch (input)
{
case 0:
switch1 = "0";
break;
case 1:
switch1 = "1";
break;
default:
switch1 = "d";
break;
}
string switch2;
switch (input)
{
case -1:
switch2 = "-1";
break;
case 0:
switch2 = "0";
break;
case 1:
switch2 = "1";
break;
default:
switch2 = "d";
break;
}
string ifElse;
if (input == 0)
{
ifElse = "0";
}
else if (input == 1)
{
ifElse = "1";
}
else
{
ifElse = "d";
}
Console.WriteLine("Input = {0}, Switch 1 output = {1}, Switch 2 output = {2}, If Else = {3}", input, switch1, switch2, ifElse);
}
此示例代码生成以下输出(为便于阅读而对齐):
Input = -1, Switch 1 output = d, Switch 2 output = d, If Else = d
Input = 0, Switch 1 output = 0, Switch 2 output = d, If Else = 0
Input = 1, Switch 1 output = d, Switch 2 output = d, If Else = 1
Input = 2, Switch 1 output = d, Switch 2 output = d, If Else = d
Input = , Switch 1 output = d, Switch 2 output = d, If Else = d
我只观察到 Nullable 类型的这种行为。不可为空的类型按预期工作。
请注意,这与此问题中的行为不同,也不是由VS2015 Update 1中修复的编译器错误引起的。我已经验证了这两个示例是否正确运行。
看起来这是由此错误引起的,并已通过此拉取请求进行修复。
我已经尝试了 Roslyn 的最新版本,问题中的示例代码现在可以按预期工作。
下面是 MSBuild Tools 2015 的更新版本,它已更正此问题。
这是一个
错误。我相信它一定是同一个错误的遗留物。最好将代码替换为If
以避免任何意外行为。