CPlusPlusThings/english/basic_content/c_poly/c++_examp.cpp
2020-07-18 23:30:56 +08:00

44 lines
996 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @file c++_examp.cpp
* @brief c++中的多态
* @author 光城
* @version v1
* @date 2019-08-06
*/
#include <iostream>
using namespace std;
class A
{
public:
virtual void f()//Implement a virtual function
{
cout << "Base A::f() " << endl;
}
};
class B:public A // 必须为共有继承否则后面调用不到class默认为私有继承
{
public:
virtual void f()//Virtual function implementation, virtual keyword in subclass can not be appearence
{
cout << "Derived B::f() " << endl;
}
};
int main()
{
A a;//Base class object
B b;//an object of derived type
A* pa = &a;//The parent class pointer points to the parent object
pa->f();//Call the function of the parent class
pa = &b; //The parent class pointer points to the subclass object, which is implemented in polymorphism
pa->f();//Call the function with the same name of the derived class
return 0;
}