码迷,mamicode.com
首页 > 编程语言 > 详细

c++中虚函数的默认值

时间:2021-04-16 12:03:44      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:toc   style   csu   需要   new   end   code   virt   注意   

 

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++中虚函数的默认值

标签:toc   style   csu   需要   new   end   code   virt   注意   

原文地址:https://www.cnblogs.com/weiyouqing/p/14664112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!