gpt4 book ai didi

java - 错误 :(23, 26) java : lambda expressions are not supported in -source 1. 5(使用 -source 8 或更高版本启用 lambda 表达式)

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:34:47 27 4
gpt4 key购买 nike

<分区>

我已将下面的源目标添加到 pom.xml 中。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>priv.winnie</groupId>
<artifactId>newfeature</artifactId>
<version>1.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
</dependency>
</dependencies>

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

我还在 IntelliJ 中将 Java 编译器更改为 1.8。我正在运行 OpenJDK 1.8.0。

为什么它仍然使用 Java source level 1.5 来编译代码?

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