编写JAVA程序 学生类Student

(1)Student.java程序要求:在源程序中,创建Student类,该类有私有成员String变量name, int型变量xh(学号);类中有带参数(name,xh)的构造方法,并有输出学生自我介绍的方法print(),介绍该生姓名与学号。
还有个问题 还是急用
(2)College.java程序要求:创建CollegeStudent类继承自Student.java,除了有成员变量name与xh外,还增有xy(学院),birthday(出生日期),出生日期的格式为“1985-01-01”。类中重载父类的构造方法,类中有根据出生日期计算该生年龄的方法getAge()。类中重载父类的print()方法,介绍该生的姓名、学号、学院、出生日期、年龄。

public class Student{
private String name;
private int xh;

public Student(){}
public Student(String name, String xh){
this.name = name;
this.xh = xh;
}
public String getName(){
return name;
}
public String getXh(){
return xh;
}
public void setName(String name){
this.name = name;
}
public void setXh(String xh){
this.xh = xh;
}
public void print(){
System.out.println("My name is "+name+",xh is"+xh+");
}
}
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答