I am new to Java and to programming and i have one problem. My code compile , but give me Error: Could not find or load main class PatienTest. Can you explain me where is my mistake and what i am doing wrong. Here is my code :
class Patient {
private String name;
private int age;
public String newName;
public String getName() {
return name;
}
public void setName() {
name = newName;
}
public int getAge() {
return age;
}
public void setAge(int newAge) {
age = newAge;
}
}
class PatientTest {
private Patient pat;
public boolean isChild() {
return (pat.getAge() < 15);
}
public void main(String[] args) {
System.out.println(isChild);
}
}
class PatientTest {
private Patient pat;
public boolean isChild() {
return (pat.getAge() < 15);
}
public void main(String[] args) {
System.out.println(isChild);
}
}