Discuss / Java / 练习:

练习:

Topic source

ypx0410

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

    public PrimaryStudent(){}

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

    public void setGrade(int grade){
        this.grade = grade;
    }
    
    public int getGrade(){
       return this.grade;
   }
}


  • 1

Reply