摘要:
case 中的条件必须是常量,而不能是变量,否则会报异常:“错误1A constant value is expected。。。。” int a = 3; int b = 4; private void test(int c) { switch (c) { case a: break; case b: break; default: break; } }这种情况下会报异常。... 阅读全文
posted @ 2008-11-12 13:25 strong.xu 阅读(1200) 评论(0) 推荐(0) 编辑