gpt4 book ai didi

java - 带开关的 Android 编码(字符串)

转载 作者:IT老高 更新时间:2023-10-28 20:50:26 25 4
gpt4 key购买 nike

当我尝试一些代码时,我正在 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(){}
........

最佳答案

随着 API 19 KitKat 的发布,您现在可以做到这一点!!!!这是现有项目的 android studio 所需的更改。确保您使用的是 JDK 1.7 或更高版本以及 Gradle 插件 0.6.1 或更高版本

android {
compileSdkVersion 19
buildToolsVersion "19.0.0"

defaultConfig {
minSdkVersion 7
targetSdkVersion 19
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
} }

关于java - 带开关的 Android 编码(字符串),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14367629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com