String x=(age>18)?"成年":"未成年";
System.out.println(x);
System.out.println(x);
2015-02-08
出现error: illegal character: \65306 case '?'? 是因为:用得汉语输入 改为英语:就好了
2015-02-08
switch中的case的取值范围值int,byte,char,short所表示的范围值内,所以不是一位数字或者两位数字的问题,但是在jdk1.7版本里面,switch取值除了int,byte,char,short的表示范围之内外,还支持使用字符串,所以更强大了。
2015-02-07