错误:跳转到SWITCH语句中的CASE标签
我写了一个涉及Switch语句使用的程序,但是编译时显示:
错误:跳至案例标签。
为什么要这样做?
#include <iostream>
int main()
{
int choice;
std::cin >> choice;
switch(choice)
{
case 1:
int i=0;
break;
case 2: // error here
}
}
解决方案
问题是,除非使用显式的{?}
挡路,否则在一个case
中声明的变量在后续的case
中仍然可见,但它们不会被初始化,因为初始化代码属于另一个case
。
在下面的代码中,如果foo
等于1,则一切正常,但如果等于2,我们将意外使用确实存在但可能包含垃圾的i
变量。
switch(foo) {
case 1:
int i = 42; // i exists all the way to the end of the switch
dostuff(i);
break;
case 2:
dostuff(i*2); // i is *also* in scope here, but is not initialized!
}
用明确的挡路包装案例解决了问题:
switch(foo) {
case 1:
{
int i = 42; // i only exists within the {?}
dostuff(i);
break;
}
case 2:
dostuff(123); // Now you cannot use i accidentally
}
编辑
更详细地说,switch
语句只是goto
的一种特别奇特的类型。下面是一段类似的代码,显示了同样的问题,但使用了goto
而不是switch
:
int main() {
if(rand() % 2) // Toss a coin
goto end;
int i = 42;
end:
// We either skipped the declaration of i or not,
// but either way the variable i exists here, because
// variable scopes are resolved at compile time.
// Whether the *initialization* code was run, though,
// depends on whether rand returned 0 or 1.
std::cout << i;
}
相关文章