c++中虚函数的默认值

2021/4/15 20:25:14

本文主要是介绍c++中虚函数的默认值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

1. 虚函数中存在默认值时,需要注意其函数调用中默认值:

class cbase
{
public:

    virtual void func(int a = 10)
    {
        cout << "this is cbase func:" << a << endl;
    }
};

class csub : public cbase
{
public:
    void func(int a = 20)
    {
        cout << "this is csub  func:" << a << endl;
    }
};

 

  cbase * cbToCb = new cbase;
 cbase * cbTocSub = new csub;
 csub  * cSubTocSub = new csub;

  cbToCb->func(); // "this is csub func:10"
  cbTocSub->func(); // "this is csub func:10"
  cSubTocSub->func(); // "this is csub func:20"



 



这篇关于c++中虚函数的默认值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程