在一个类需要调用另一个类的函数时,可以使用父子类。
定义
#include "iostream"
using namespace std;
class father
{
public::
virtual void func()
{
cout << "this is father!!!" << endl;
}
};
class son : public father
{
public:
virtual void func()
{
cout << "this is son!!!" << endl;
}
};
通过上述代码定义父类father, 子类son。
使用
可以通过子类对象调用父类函数,通过域操作符(::)实现。
int main(int argc, char** argv)
{
father A;
son B;
A.func(); //this is father!!!
B.func(); //this is son!!!
B.father::func(); //this is father!!!
}
注意
Tips_01
子类的对象可以赋给父类,反之不行。
A = B; //true
B = A; //false
Tips_02
父类的指针可以指向子类,即,父类可以访问到子类。反之不行。
father *pf = new son; //true
son *ps = new father; //false
Tips_03
父类的引用可以初始化为子类的对象,反之不行。
father &rf = B; //true
son &rs = A; //false
Tips_04
子类指针必须强制转换为父类指针后才可以指向父类;
父类指针转换为子类指针容易导致崩溃性错误;
虚父类的引用或派生不能转换为子类。