static.h

来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架&gt」· C头文件 代码 · 共 19 行

H
19
字号
#ifndef STATIC_H#define STATIC_H//startclass Thing {public:    Thing(int a, int b);    ~Thing();    void display() const ;    static void showCount();private:    int m_First, m_Second;    static int sm_Count;};//end#endif        //  #ifndef STATIC_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?