gpt4 book ai didi

c++ - 有什么办法可以直接转到具体案例吗?

转载 作者:行者123 更新时间:2023-11-28 00:46:40 25 4
gpt4 key购买 nike

我想知道是否有任何简单的方法可以直接“跳转到”特定案例。

我知道这可以通过使用 do while 循环来完成。想知道是否有更优雅的方式。

例如(当然不是整个代码):

.
.
.
case 8:
{
if (grades.findStudent(tempid1)==-1)
{
cout << "\nOne of the ID's you have entered wasn't found. Try again.\n" << endl;
case(8); //<- <- <- something like that
}

}
break;
.
.
.

最佳答案

当然。做:

switch (...) {
case 1:
foo ();
goto bar;
case 2:
...

bar:
case 42:
baz ();
break;
}

但是您的问题可能还有其他解决方案。

关于c++ - 有什么办法可以直接转到具体案例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15978579/

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