我一直在为编程的第一堂课做作业。我正在使用NetBeans。我完成了我的项目并且工作正常。我觉得我可以做得更好所以我刮了它并开始新鲜的石板。现在,当我尝试运行它时,我收到一条消息“没有找到主要类”。但我有一个主要课程。以下是一些代码:
package MyName;
import java.util.*;
import java.io.*;
public class MyName {
public static void main(String[] args)throws Exception {
//declare new file
java.io.File newFile = new java.io.File("LuisRamosp4.txt");
//check to see if file exist, if it does then delete it
if (newFile.exists()) {
newFile.delete();
}
//used to create a file
System.setOut(new PrintStream(newFile));
//instance 1 of Guitar object
Guitar myGuitar = new Guitar();
在这一行上有一条错误消息“无法找到符号”只有我已经建立了一个类。这是一行:
Guitar myGuitar = new Guitar();
这是我班上的一部分:
public class Guitar {
boolean isPlaying = false;
boolean isTuned = false;
我明白我应该保留我的代码。我想再试一次,现在我被卡住了。任何建议将不胜感激。
答案 0 :(得分:-1)