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~
这个编程不难啊,为什么自己不试试。新建一个类档旅:
class Book
{
private:
string m_Bookname
int number
float m_Price
public:
Book()
book(string bookName,int bookNumber,float bookPrice)
virtual ~Book(){}
void Display()
int Borrow()
int Restore()
}
写函数(举例):
Book::Book() //构造
{
string m_Bookname = 。。
int number = 。。岁空
float m_Price 。。
}
void Book::Display()
{
cout<<乎蠢瞎"书名:"<<m_Bookname<<endl
cout<<"数量:"<<number<<endl
。。。
}
主函数:
void main()
{
Book book//类对象
book.Book(历史,2,13.5)
book.Display()
return
}
大概如此,不懂加我112876463
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)