标签:访问权限
c++继承的一个疑惑
#include <iostream> class Shape{ public: virtual void show(int a = 12 ){ std::cout << "Shape a:" << a << std::endl; } }……
04-27 立刻查看
不同包里面的子类继承了父类却访问不了protected权限的问题
protected访问权限继承 父类: package father; public class Person{ protected void introduce(){ System.out.println(“父类中的introduce函数,拥有protected权限”); } } 子类: p……
04-23 立刻查看