我需要帮助来向我解释“静态”一词在这里如何使用,如何工作以及在哪里可以使用?
class Constructor
{
private:
static Constructor constructor;
public:
static Constructor* constructor();
};
Constructor Constructor::constructor;
Constructor* constructor::constructor()
{
return &constructor;
}