Discuss / Java / andrewdong

andrewdong

Topic source

友谊NASA

#1 Created at ... [Delete] [Delete and Lock User]
class PrimaryStudent extends Student{
    protected int grade;

    public PrimaryStudent(String name, int age, int score, int grade){
        super(name, age, score);
        this.grade = grade;// TODO
    }
    
    public int getGrade() { return grade; }
}

  • 1

Reply