Discuss / Java / 叮...

叮...

Topic source
class PrimaryStudent extends Student{
    // TODO
    protected int grade;
   
    public PrimaryStudent(String name,int age,int score,int grade){ 
        super(name,age,score);
        this.grade = grade;   
    }
}


  • 1

Reply