0
當我編譯/運行我的代碼,它的功能完美。但是,我的代碼中有一個持續性錯誤消息,指出無法解析String
和System
。 據我所知,這一切似乎都很好,就像我說的,它運行得很完美。 有沒有人有什麼想法是什麼造成這個?Java Intellij - 「無法解析符號」
感謝。
public class Main {
public static void main(String[]args){
System.out.println("This is main!");
HelloWorld.helloWorld(); //I am calling the function "helloWorld" from the HelloWorld class
System.out.println(ForLoop.loop()); //I am printing the return value of the function "loop" from the ForLoop class
ReturnArgsLength.returnArgsLength(args.length); //Passing in variable to function
}
}
顯示的代碼沒有問題;如果你想更多地調試它,可以從'HelloWorld','ForLoop'和'ReturnArgsLength'添加代碼 – bc004346
提到的類的列表代碼以及 –
請嘗試文件|使緩存失效|無效並重新啓動,確保爲項目正確配置了JDK。 – CrazyCoder