基本上我收到錯誤消息:「錯誤:無法找到或加載主類驅動程序」爲什麼我得到這個錯誤?這是我第一個使用類的實例,所以我不確定我的代碼中的語法。任何幫助表示讚賞,謝謝。爲什麼我不能加載/找到主類?
public class Person {
private String name;//a variable that contains a person's name
private int age;//a variable that contain's a person's age
public class Driver{
public void main(String[] args)
{
String name1="John";
int age1=30;
Person person1= new Person();
person1.setName(name1);
person1.setAge(age1);
System.out.print(person1.getName());
System.out.print(person1.getAge());
}
}
//returns the age of a person
public int getAge(){
return age;
}
//returns the name of a person
public String getName()
{
return name;
}
//changes name of a person
public void setName(String s)
{
name=s;
}
//changes age of a person
public void setAge(int x)
{
age=x;
}
}
你需要'static'。 –