当前位置: 首页>>代码示例>>C++>>正文


C++ Base::FunctionY方法代码示例

本文整理汇总了C++中Base::FunctionY方法的典型用法代码示例。如果您正苦于以下问题:C++ Base::FunctionY方法的具体用法?C++ Base::FunctionY怎么用?C++ Base::FunctionY使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Base的用法示例。


在下文中一共展示了Base::FunctionY方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: testDefaultParams

void testDefaultParams(const char* mode) {
   // One object of type Base and one of type derived
   Base    *base    = new Base(mode);
   Derived *derived = new Derived(mode);
   
   // Another of type Base pointing to a Derived 
   Base    *base_der = derived;

   // Default parameter of the base funtion
   base->FunctionX();

   // Default parameter of the derived funtion
   derived->FunctionX();

   // Default parameter of the base funtion again!!!
   // Note: they are evaluated according to their static
   // type since in this case it's "Base *base_der"
   base_der->FunctionX();


   base->FunctionY(); // counter: 1
   derived->FunctionY(); // counter: 2
   base_der->FunctionY(); // counter: 3

   base_der->FunctionY(42, 42); // counter: unchanged!

   base->FunctionY(); // counter: 4
   derived->FunctionY(); // counter: 5
   base_der->FunctionY(); // counter: 6

   delete base;
   delete derived;
}
开发者ID:asmagina1995,项目名称:roottest,代码行数:33,代码来源:testDefaultParams.C


注:本文中的Base::FunctionY方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。