我正在测试Java 8的一些新特性,并将示例复制到我的IDE(最初是Eclipse,然后是IntelliJ),如下所示

Eclipse对lambda表达式不提供任何支持,IntelliJ不断报告错误

此语言级别不支持Lambda表达式

我想知道这是否是我的安装、代码或支持的问题。


当前回答

这个答案对新更新的intelliJ不起作用…为了新智能…

进入——> file——> Project Structure——> Global Libraries ==>设置为JDK 1.8或更高版本。

also File——> project Structure——> projects ===> set "project language manual" = 8

——>项目结构——>项目sdk ==>

这将为您的项目启用lambda表达式。

其他回答

在Android studio金丝雀构建(3.+)中,你可以做以下事情:

在模块部分中,有你的类的模块名称。单击要将java升级到1.8版本的模块。->将“源兼容性”和“目标兼容性”从1.7或更低修改为1.8。不要改变其他任何东西。->单击“应用”

现在gradle将重新同步,你的错误将被删除。

为lambda表达式提供Ecplise支持:

确保您使用的是JDK 1.8 (windows > Preferences > Installed JREs and Compiler); 如果您定义了任何新的函数接口,请使用注释@FunctionalInterface,这样eclipse就会建议您重构与Lambdas(函数接口)相关的结构。

对于intellij 13, 使用下面的导航,简单地将Project语言级别本身更改为8.0。

File
|
|
 ---------Project Structure -> Project tab
          |
          |________Project language level

模块郎水平

当java编译器没有maven插件时,我还必须更新Modules lang级别。

File
|
|
 ---------Project Structure -> Modules tab
          |
          |________ language level

但如果已经有maven插件,这个Module lang级别将自动固定,

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.6.0</version>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>

在改变之后,一切看起来都很好

此解决方案适用于Android Studio 3.0或更高版本。

文件>项目结构>模块>应用>属性选项卡

将Source Compatibility和Target Compatibility都更改为1.8

编辑配置文件

您也可以在相应的版本中直接配置它。gradle文件

android {
  ...
  // Configure only for each module that uses Java 8
  // language features (either in its source code or
  // through dependencies).
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}

只需在build中添加compileOptions即可。Gradle你的应用:

android {


...

  defaultConfig {
    ...
    jackOptions {
      enabled true
    }
  }
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}