指针,静态成员函数

时间:2019-11-19 16:18:41

标签: c++ function pointers static

我需要帮助来向我解释“静态”一词在这里如何使用,如何工作以及在哪里可以使用?

class Constructor 
{
private:
static Constructor constructor;
public:
static Constructor* constructor();

};
Constructor Constructor::constructor;
Constructor* constructor::constructor()
{
    return &constructor;
}

0 个答案:

没有答案