本文整理汇总了C++中Drive::show_protected_data方法的典型用法代码示例。如果您正苦于以下问题:C++ Drive::show_protected_data方法的具体用法?C++ Drive::show_protected_data怎么用?C++ Drive::show_protected_data使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Drive
的用法示例。
在下文中一共展示了Drive::show_protected_data方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
Drive d;
cout << d.show() <<endl;
cout << d.show_protected_data() <<endl;
Drive *dd = new Drive;
Base *b = dd; //静态是Base动态是Drive
b->v_func(); //结果是d data: 0 指针是所以调用动态函数但是参数是静态 就是base的 0
b->no_virtual();//结果是Base类的函数
Drive_private *pd = new Drive_private;
cout << pd->show_protected_data() <<endl;
//pd->acessy_pubilc_inhirit(); //error 不能被获取
}