我正在學習Java,因爲你可以看到。我被困在第一課,我無法編譯這個錯誤。如何解決java文件錯誤:(無關聯文件)[行:(無源位置)]
1./*
2.Java Hello World example.
3.*/
4.
5.public class HelloWorldExample{
6.
7. public static void main(String args[]){
8.
9. /*
10. Use System.out.println() to print on console.
11. */
12. System.out.println("Hello World !");
13.
14. }
15.
16.}
17.
18./*
19.
20.OUTPUT of the above given Java Hello World Example would be :
21.
22.Hello World !
23.
24.*/
1 error found:
File: (no associated file) [line: (no source location)]
Error: Compile exception: java.lang.NoClassDefFoundError: org/eclipse/jdt/internal/compiler/impl/IrritantSet
請幫助這個盲目的傻瓜找到相關的文件,感謝
什麼!? IrritantSet ??? XD – kol