虚继承练习

文章通过两个C++代码示例展示了虚函数在类继承和多态中的应用。第一个例子说明了如何通过基类指针调用派生类的重写方法。第二个例子讨论了基类和派生类中同名函数导致的隐藏问题以及如何使用动态绑定和向上转型解决。
摘要由CSDN通过智能技术生成

class A {

  virtual void t2()

  { cout<<"A::t2()"<<endl; }

public:

  void func() 

  { t2(); cout<<"A::f()"<<endl; }

};

class B : public A {

  virtual void t2() 

  { cout<<"B::t2()"<<endl; }

public:

  void func() 

  { t2(); cout<<"B::f()"<<endl; }

};

int main()

{ B b;

  A * p = &b;

  p->func();

  b.func();

  return 0;

}

 

 

 

 

#include<iostream>

using namespace std;

 

class CBase

{

public:

    virtual void print()

    {

        cout << "CBase::print()" << endl;

    }

};

 

class CDerived : public CBase

{

public:

    /7oid print(){ cout << "CDerived::print()" << endl; }

    void print(int i)

    {

        cout << i << endl;

    }

};

 

int main()

{

    CDerived derived;

 

    derived.print(0); // 此时调用的不是虚函数

    //derived.print(); // 此调用非法,因为基类的该函数被隐藏了

// (dynamic_cast<CBase&>(derived)).print(); // 向上转型(Upcasting),此时等同于static_cast,反之不行

    CBase * pBase = &derived;

    pBase->print(); // 调用的是虚函数,因为通过基类指针看到的是基类的函数

 

    return 0;

}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值