gpt4 book ai didi

android-studio-2.0 - Android Studio : Extension Methods are not supported at this language level

转载 作者:行者123 更新时间:2023-12-04 03:26:20 26 4
gpt4 key购买 nike

以下代码产生了错误
“此语言级别不支持扩展方法”
在android studio中:

public interface Test {
static String Test2(String A) {
return "";
}
}

AS 2.0 Beta 2

我做错了什么?

最佳答案

您正在尝试使用static interface method,这是Java 8中的新增功能。
直到Android N,Android才支持它。有关更多信息,请参阅Android指南中的Use Java 8 Language Features

现在仍然有一个BUG

您必须按照上述说明使用Java 8进行编译。
这是build.gradle的示例:

apply plugin: 'com.android.application'

android {
compileSdkVersion 'android-N'
buildToolsVersion "24.0.0-rc3"

defaultConfig {
applicationId "example.com.examplejdk8"
minSdkVersion 24
targetSdkVersion 'N'
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0-alpha2'
compile 'com.android.support:design:24.0.0-alpha2'
}

关于android-studio-2.0 - Android Studio : Extension Methods are not supported at this language level,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35259724/

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