I created a superclass (Person) & a subclass (Student)
public class Person{
private String name;
private Date birthdate;
//0-arg constructor
public Person() {
birthdate = new Date("January", 1, 1000);
name = "unknown name";
}
//2-arg constructor
public Person(String newName, Date newBirthdate){
this.name = newName;
this.birthdate = newBirthdate;
}
//Subclass
public class Student extends Person{
public Student(){
super(name, birthdate)
}
I get the error: cannor reference name & birthdate before supertype cosntructor has been called. I tried:
public Student(){
super()
}
but my course tester says I should use super(name, birthdate);