概述
类的初始化顺序:子类的父类初始化 : 先调用父类(多组父类调用顺序和定义顺序有关), 再调用组合类(和定义顺序有关) ,最后调用子类
基类(父类)成员在派生类(子类)中的访问权限:
#include <iostream>
#include<cstring>
using namespace std;
class Time{
public:
Time(){
cout<<"Time's constructor."<<endl;
}
~Time(){
cout<<"Time's de-constructor."<<endl;
}
};
class Date{
public:
Date(int y, int m, int d){
year= y; month-m; day=d;
cout<<"Date's constructor."<<endl;
}
~Date(){
cout<<"Date's de-constructor."<<endl;
}
private:
int year,month,day;
};
class Person{
public:
Person(int _age){age=_age;
cout<<"Person's constructor."<<endl;
}
~Person(){
cout<<"Person's de-constructor."<<endl;
}
protected://只放开给子类,在子类可以访问
int age;
Time time;
};
class Student:public Time,public Person{//预定义顺序有关
public:
//子类的父类初始化:先调用父类 再调用组合类(和定义顺序有关) 最后调用子类;
Student(int _age,int _id,int y,int m,int d):birthday(y,m,d),Person(_age){
id=_id;
cout<<"Student's constructor."<<endl;
}
~Student(){
cout<<"Stdent's de-constructor."<<endl;
}
void show(){
cout<<age<<" "<<id<<endl;
}
private:
int id;
Date birthday;
// Time time;
};
int main()
{
Student stu(18,200021,1999,9,9);
stu.show();
//cout<<stu.age<<endl;
}//父类的访问控制权限在子类中的访问控制权限不会更透明;
第一行为 父类Time;
第二行为 父类Person里调用组合类Time;
第三行为 父类Person自身;
第四行为 子类里面组合类 Date;
第五行为 子类Student自身;
子类的父类初始化:先调用父类 再调用组合类(和定义顺序有关) 最后调用子类;
最后
以上就是无私香菇为你收集整理的继承 1(类初始化顺序;类的访问控制权限)的全部内容,希望文章能够帮你解决继承 1(类初始化顺序;类的访问控制权限)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复