1. ホーム
  2. c++

[解決済み] C++でプライベートコンストラクタが必要なのはどんなとき?

2022-03-13 08:29:28

質問

C++のプライベートコンストラクタについて質問です。コンストラクタがprivateの場合、そのクラスのインスタンスはどのように作成すればいいのでしょうか?

クラス内にgetInstance()メソッドを用意した方が良いのでしょうか?

どのように解決するのですか?

を持つ場合、いくつかのシナリオがあります。 private のコンストラクタを使用します。

  1. 以外のオブジェクトの作成を制限する friend この場合、すべてのコンストラクタは private

    class A
    {
    private:
       A () {}
    public:
       // other accessible methods
       friend class B;
    };
    
    class B
    {
    public:
       A* Create_A () { return new A; }  // creation rights only with `B`
    };
    
    
  2. 特定のタイプのコンストラクタ(コピーコンストラクタ、デフォルトコンストラクタなど)を制限する。 std::fstream は、このようなアクセス不能なコンストラクタによるコピーを許可しません。

    class A
    {
    public:
       A();
       A(int);
    private:
       A(const A&);  // C++03: Even `friend`s can't use this
       A(const A&) = delete;  // C++11: making `private` doesn't matter
    };
    
    
  3. 外部に公開しないことを前提とした、共通のデリゲートコンストラクタを持つこと。

    class A
    {
    private: 
      int x_;
      A (const int x) : x_(x) {} // common delegate; but within limits of `A`
    public:
      A (const B& b) : A(b.x_) {}
      A (const C& c) : A(c.foo()) {}
    };
    
    
  4. 対象 シングルトンパターン シングルトンの場合 class が継承されない場合(継承される場合は protected コンストラクタ)

    class Singleton
    {
    public:
       static Singleton& getInstance() {
          Singleton object; // lazy initialization or use `new` & null-check
          return object;
       }
    private:
       Singleton() {}  // make `protected` for further inheritance
       Singleton(const Singleton&);  // inaccessible
       Singleton& operator=(const Singleton&);  // inaccessible
    };