我需要在switch语句中比较一个int,而我不确定我输入错误的方式。这是我的代码:
switch (y) {
case int y isgreater(1, 411):
// case code here...
为了简化我想要的,在VB中,代码将是:
Case >= 411:
'Code here for case
答案 0 :(得分:2)
if
声明:
if (y >= 411) {
// do stuff
}
在switch
语句中,每个case
值必须是离散常量。
switch (expression) {
case 5:
// stuff
break;
case 12:
// stuff
break:
default:
// stuff
break;
}