<面向对象程序设计基础(第二版>李师贤等,第254页:C++语言的基本规则是:创建一个派生类的对象时,如果基类带有构造函数,则先调用基类的构造函数,然后才调用派生类的构造函数. <Thinking in C++>,刘宗田等译,第261页:可以看出,构造在类层次的最根处开始,而在每一层,首先调用基类构造函数,然后调用成员对象构造函数. <C++ Primer Plus(第四版)中文版>,孙建春等译,第399页:记住:创建派生类对象时,程序首先调用基类构造函数,然后再调用派…
三.多层继承的派生类 1.多层继承的派生类只需在构造函数的初始化列表中写出直接基类的构造函数即可 class student { public: student(int n, string nam) { num = n; name = nam; } }; class student1 : public student { public: student1(int n, string nam, int a) :student(n, nam) {age = a;} }; class student2…
参考: http://blog.csdn.net/rehongchen/article/details/7930853 http://blog.csdn.net/ming_road/article/details/6953687 http://blog.csdn.net/roden/article/details/5413371 中文版:p489 .对应英文版内容: Like an inherited member function, the conversion from derived to…
二.有内嵌对象的派生类 1.一般来说,我们会这样定义构造函数 student( int i, string nam, int pid, string pnam, int sid) : person( i, nam),parent(pid,pnam){ stuid = sid; } person是基类的构造函数,parent是该派生类内嵌的person子对象 2.具体例子 #include <iostream> using namespace std; class A { int dataA…
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvUl9NaXNheWE=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt=""> #include<iostream> #include<string> using namespace std; class Person { protected: cha…