标签:ret 继承 class 子类 function 静态方法 code std end
C++的类可以继承,那对静态类的继承会有何不同呢?
class Base
{
private:
static int a1;
public:
static int getA1()
{
return a1;
}
static void setA1(int value)
{
a1 = value;
}
};
class Derived : public Base
{
public:
void Show()
{
std::cout << __FUNCTION__ << std::endl;
}
};
使用示例如下
init main()
{
Base* b = new Derived();
b->setA1(1);
Base::setA1(3);
cout << b->getA1() << endl;
Derived::setA1(5);
cout << Derived::getA1();
return 0;
}
输出结果
3
5
可以看出,
标签:ret 继承 class 子类 function 静态方法 code std end
原文地址:https://blog.51cto.com/ggwhsd/2434921