1。People.java
public class People {
//性别(sex)及出生日期(date);方法成员有:获取人的性别和出生日期及构造方法。要求构造方法可以设置性别和出生日期的初始值。
private int sex
private Date birth
public People (int sex, Date birth) {
this.sex = sex
this.birth = birth
}
public int getSex() {
return this.sex
}
public Date getBirth() {
return this.birth
}
}
2。Student.java
public class Student extends People{
private int sex
private Date birth
private String name
private int stuno
private double grate
private String studentNative
public Student(int sex, Date birth, String name, int stuno, double grate, String studentNative) {
super(sex, birth)
this.name = name
this.stuno = stuno
this.grate = grate
this.studentNative = studentNative
}
public Date getBirth() {
return birth
}
public double getGrate() {
return grate
}
public String getName() {
return name
}
public int getSex() {
return sex
}
public String getStudentNative() {
return studentNative
}
public int getStuno() {
return stuno
}
}
3。测试类自己编写就好了,创建一个People和Student的对象,然后设置值,取值就可以了。
五。
1.构造方法没有返回值,方法名和类名一样.
2.继承是指子类可以拥有父类的方法和属性;多态是指父类的引用可以指向子类对象的实例
3.重写
4.重载
其他的没什么了,自己完成以下吧。O(∩_∩)O~
一般步骤如下:1.学生个人信息
2.实验目的
3.实验内容和要求
4.实验材料、工具或软件
5.实验步骤(源代码)
6.实验存在问题和解决办法
7.意见和建议
8.教师评语
另外,你要的实验报告和源代码,我已经发到你的邮箱了,请查收。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)