Discuss / Java / 交作业——继承

交作业——继承

Topic source

class PrimaryStudent extends Student {

    protected int grade;

    public PrimaryStudent(String name, int age, int score, int grade) {

        super(name, age, score);

        this.grade = grade;

    }

    public int getGrade() { return grade; }

}


  • 1

Reply