当我尝试一些代码时,我正在 Eclipse 上开发一个 android 应用程序
switch(String){
......
}
它给了我以下错误
Cannot switch on a value of type String for source level below 1.7. Only convertible int values or enum variables are permitted
所以我将编译器更改为 1.7,然后它给了我另一个错误
Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools > Fix Project Properties.
那么,无论如何让 switch(String) 在 android 应用程序中工作?或者我别无选择,只能使用
if(){}
else if(){}
else if(){}
........