标签:prot int div protected span turn return 函数 派生类
class A { int a; int b; int fun(){ return a; } }; class B : private A { public: void funB() { int num = fun();//private继承派生类函数 基类为private根本访问不了,能访问protected和public } }; int main() { B b; return 0; }
标签:prot int div protected span turn return 函数 派生类
原文地址:http://www.cnblogs.com/zzyoucan/p/6659631.html