您好,登錄后才能下訂單哦!
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
可以看出,
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。