一个switch语句中的C对象
在switch语句中使用Objective-C对象时出现编译器错误:
switch (myConstant)
{
case 0:
UIViewController *myController = [[[UIViewController alloc] init] autorelease];
[self.navigationController pushViewController:myViewController animated:YES];
break;
case 1:
// stuff
break;
default:
break;
}
错误状态:
“UIViewController”之前的预期表达式
'myViewController'未声明(首次在此函数中使用)
我明白第二个错误是第一个错误的直接结果,但我不明白的是为什么我首先得到'预期表达式'错误...
如果我把一个;
在case 0:
行结束时,它会编译,但我不应该这样做,不是吗?
这也将无法编译,同样的错误:
switch (0)
{
case 0:
int a = 0;
break;
default:
break;
}
但是,如果我声明int a;
在开关块外部,则a = 0;
编译好。
我认为我理解了switch语句 - 显然我不知道。 有人能解释一下吗?
如果您声明了新的变量,只需在案例中添加{}。 switch语句的case部分不是在C中声明变量的正确范围。
case 0:
{
int a = 0;
break;
}
...
链接地址: http://www.djcxy.com/p/14767.html
上一篇: C objects in a switch statement
下一篇: How to store the time period(duration) of a captured video in iPhone?