gpt4 book ai didi

c# - 我可以简化这个案例陈述吗?

转载 作者:行者123 更新时间:2023-11-30 19:06:36 24 4
gpt4 key购买 nike

我有以下内容:

switch (id.Substring(2, 2))
{
case "00": return("14");
case "01": return("19");
case "02": return("19");
case "03": return("19");
case "1F": return("19");
case "04": return("17");
case "05": return("18");

}

对此不确定,但有没有办法将“01”、“02”、“03”和“1F”合并为一个?

最佳答案

    switch (id.Substring(2, 2))
{
case "00": return("14");
case "01":
case "02":
case "03":
case "1F": return("19");
case "04": return("17");
case "05": return("18");
}

基本上,只要您不添加任何代码(因为不支持 fall-through),您可以对多个测试值使用相同的结果路径。

关于c# - 我可以简化这个案例陈述吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10408523/

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