您的位置:首页 > 其它

多级派生情况下派生类的构造函数

2011-05-30 14:58 218 查看
#include<iostream>
#include<string>
using namespace std;
class Student
{
public:
Student(int n,string nam)
{
num=n;
name=nam;
}
void display()
{
cout<<"num:"<<num<<endl;
cout<<"name:"<<name<<endl;
}
~Student(){}
protected:
int num;
string name;
};

class Student1:public Student
{
public:
Student1(int n,string nam,int a):
Student(n,nam)
{
age=a;
}
void show()
{
display();
cout<<"age:"<<age<<endl;
}
~Student1(){}
private:
int age;
};

class Student2:public Student1
{
public:
Student2(int n,string nam,int a,double s):
Student1(n,nam,a)
{
score=s;

}
void show_all()
{
show();
cout<<"score:"<<score<<endl;
}
~Student2(){}
private:
double score;
};

int main()
{
Student2 stud2(2008482271,"帅哥",24,100);
stud2.show_all();
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: