我正在通过Microsoft开设的Edx课程学习JAVA,并且在视频中重复了这些示例,但是每次编译时都会不断显示此错误:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
at var.main(var.java:3)
这是我的代码,与视频教程中的代码基本相同:
public class var {
public static void main (String[] args) {
int x= 12;
System.out.println("my number is" + x);
}
}
当他们是IntelliJ时,我使用Eclipse IDE 希望您能指出错误。谢谢。