在intellij上安装了scala插件之后,我开始遇到这个奇怪的错误,并且无法解析符号'消息。
在我的java代码中使用scala元组时出现。
这个错误并不能阻止我成功建立/运行,但我无法摆脱它们,这让我很困惑。
我相信这是intellij本身的一个错误。
代码
import scala.Tuple2;
public class testTuple2 {
public static void main(String[] args) {
//this line show errors
Tuple2<Integer, Integer> tuple = new Tuple2<Integer, Integer>(3, 4);
System.out.println("Tuple 1" + tuple._1);
//this line doesn't show errors
System.out.println("Tuple 1" + tuple._1());
}
}
pom文件
<?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>com.test</groupId>
<artifactId>com.test</artifactId>
<version>1.0-SNAPSHOTcom.test</version>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.10.4</version>
</dependency>
</dependencies>
一些事实:
我的试验
我尝试使缓存失效并重新启动想法但是徒劳无功 我尝试删除/禁用该插件,它工作但我需要我的scala项目的插件,所以这不是一个有效的解决方案。 我尝试将intellij更新到最新版本和scala插件但是徒劳无功