What is a static constructor?

后端 未结 13 1808
天涯浪人
天涯浪人 2020-11-27 03:46

This question was asked to me in an interview:

What is a static constructor?

Does it exist in C++? If yes, please explain it wit

13条回答
  •  情深已故
    2020-11-27 04:12

    May be they mean this:

    class Cat
    {
    private:
    Cat();
    public:
    static Cat getCat() {return Cat(); }
    }
    

提交回复
热议问题