热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

IntelliJ不会在List/Map的末尾接受Java8和钻石-IntelliJwon'tacceptJava8anddiamondsattheendofList/Map

ImusingthelatestJDKandeverywherefromprojectcreationtonoweverythingissettoJava8orS

I'm using the latest JDK and everywhere from project creation to now everything is set to Java8 or SDK 8.

我正在使用最新的JDK,从项目创建到现在,一切都设置为Java8或SDK 8。

Still, intelliJ gives me this issue:

仍然,intelliJ给了我这个问题:

enter image description here

The red lamp tells me to change to Java7.

红灯告诉我改为Java7。

This is my project settings: enter image description here

这是我的项目设置:

and this is the Modules section: enter image description here

这是模块部分:

As you can see; I specifically changed it from the SDK default to java 8 when I got the error, but no result.

如你看到的;当我收到错误时,我专门将它从SDK默认更改为java 8,但没有结果。

The compiler settings look like this: enter image description here

编译器设置如下所示:

I'm on a macbook and the intelliJ is the community version. Does anyone know why this is happening and how I fix it?

我在macbook上,而intelliJ是社区版。有谁知道为什么会这样,以及我如何解决它?

2 个解决方案

#1


Try to run the project, if this is your error message: enter image description here

尝试运行该项目,如果这是您的错误消息:

Then I suggest you have a little look into your pom-file.

然后我建议你稍微查看你的pom文件。

This project was built using the intelliJ maven project setting, and it was missing this lovely line of code:

这个项目是使用intelliJ maven项目设置构建的,它缺少这段可爱的代码:


    
        
            org.apache.maven.plugins
            maven-compiler-plugin
            
                1.8
                1.8
            
        
    

IntelliJ doesn't (at least in my case) generate the version in the pom (despite that I picked all the settings for it).

IntelliJ没有(至少在我的情况下)在pom中生成版本(尽管我选择了它的所有设置)。

#2


I tried specifying the compiler version in the plugin too, to no avail. Have you tried invalidating the cache? It's File -> Invalidate Caches/Restart.... I would probably restart as well for good measure.

我也尝试在插件中指定编译器版本,但无济于事。您是否尝试过无效缓存?这是文件 - >无效缓存/重新启动....我可能会重新启动以获得良好的衡量标准。


推荐阅读
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 本文详细介绍了如何准备和安装 Eclipse 开发环境及其相关插件,包括 JDK、Tomcat、Struts 等组件的安装步骤及配置方法。 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 本文详细介绍了Java中org.eclipse.ui.forms.widgets.ExpandableComposite类的addExpansionListener()方法,并提供了多个实际代码示例,帮助开发者更好地理解和使用该方法。这些示例来源于多个知名开源项目,具有很高的参考价值。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • CMake跨平台开发实践
    本文介绍如何使用CMake支持不同平台的代码编译。通过一个简单的示例,我们将展示如何编写CMakeLists.txt以适应Linux和Windows平台,并实现跨平台的函数调用。 ... [详细]
  • 本文介绍了如何在C#中启动一个应用程序,并通过枚举窗口来获取其主窗口句柄。当使用Process类启动程序时,我们通常只能获得进程的句柄,而主窗口句柄可能为0。因此,我们需要使用API函数和回调机制来准确获取主窗口句柄。 ... [详细]
  • 本文详细解析了Python中的os和sys模块,介绍了它们的功能、常用方法及其在实际编程中的应用。 ... [详细]
  • 2023年京东Android面试真题解析与经验分享
    本文由一位拥有6年Android开发经验的工程师撰写,详细解析了京东面试中常见的技术问题。涵盖引用传递、Handler机制、ListView优化、多线程控制及ANR处理等核心知识点。 ... [详细]
  • 使用Python在SAE上开发新浪微博应用的初步探索
    最近重新审视了新浪云平台(SAE)提供的服务,发现其已支持Python开发。本文将详细介绍如何利用Django框架构建一个简单的新浪微博应用,并分享开发过程中的关键步骤。 ... [详细]
  • 本文介绍如何在Linux Mint系统上搭建Rust开发环境,包括安装IntelliJ IDEA、Rust工具链及必要的插件。通过详细步骤,帮助开发者快速上手。 ... [详细]
  • 本文将详细探讨Linux pinctrl子系统的各个关键数据结构,帮助读者深入了解其内部机制。通过分析这些数据结构及其相互关系,我们将进一步理解pinctrl子系统的工作原理和设计思路。 ... [详细]
author-avatar
IKUN
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有