public int calRent(int days,String type){ switch (type) { case "1": num=600*days; break;
default: break; } return num; }
如果使用String类型的type值要JDK1.7版本以上的
1.8不行吗?