C++靜態成員

靜態數據成員 定義: 以關鍵字static聲明的數據成員 class Box { public: int volume() const; private: int iwitch; int length; int heigth; static int count; }; 初始化: 靜態數據成員必須初始化且只能在類外初始化,初始化時不能加static,格式: 類
相關文章
相關標籤/搜索