gpt4 book ai didi

c# - switch 语句中的 switch 语句?

转载 作者:IT王子 更新时间:2023-10-29 04:40:53 25 4
gpt4 key购买 nike

我必须评估很多条件。就我而言,我必须做这样的事情:

switch(id)
{
case 5:
// switch some other cases here
case 6:
// set some value
...
}

在案例 5 中使用另一个开关是否是好的做法?如果不是,那什么更好?有 if 语句吗?

最佳答案

我会调用一个特定于案例 5 的函数,然后在该函数中包含切换案例。例如:

switch(id)
{
case 5:
FunctionFiveSpecific(id);
case 6:
// set some value
...
}

案例5的具体功能:

private void FunctionFiveSpecific(id)
{
// other switch in here
}

关于c# - switch 语句中的 switch 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6097513/

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