Local Variable Type Inference not being recognized

我与影子孤独终老i 提交于 2019-12-06 06:26:52

Apparently, though a hard restart of the IDE is not enough, by setting language level to X - Experimental features on both the project and the module once, then re-setting it to lvl. 10 was enough to bring the IDE back in line.

I guess I should credit @CrazyCoder here for giving me the idea, even if indirectly.

Leonardo Emili

I searched on the web for a while and I found out that IntelliJ fully supports it. Have you checked if the SDK version you are running on IntelliJ is the 10th? You can check it by going to Project Structure (Alt+Shift+Ctrl+S), SDKS. From here if you don't see the label 10.0 in the left side of the panel just manually add it with the plus button. Hope this helps.

In Settings/Build/Compiler/Java Compiler you must change the "Target bytecode version" to 10 in each one of your modules.

Your code works fine with Java10 on my MacOS IntelliJ 2018.1 built on March 27 2018.

IntelliJ IDEA 2018.1 (Community Edition) Build #IC-181.4203.550, built on March 27, 2018

There might be error with either your IntelliJ or JDK. Try to use jshell from terminal instead. If can, should update your IntelliJ. If cannot, should check your installed JDK. The version on my machine:

"10" 2018-03-20 Java(TM) SE Runtime Environment 18.3 (build 10+46)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!