Can a constructor be private in C++ ? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 32 Likes Like Report Prerequisite : Constructors A constructor is a special member function of a class which initializes objects of a class. In C++, constructor is automatically called when object of a class is created. By default, constructors are defined in public section of class. So, question is can a constructor be defined in private section of class ? Answer : Yes, Constructor can be defined in private section of class How to use Constructors in private section? Using Friend Class : If we want that class should not be instantiated by anyone else but only by a friend class. CPP // CPP program to demonstrate usage of // private constructor #include <iostream> using namespace std; // class A class A{ private: A(){ cout << "constructor of A\n"; } friend class B; }; // class B, friend of class A class B{ public: B(){ A a1; cout << "constructor of B\n"; } }; // Driver program int main(){ B b1; return 0; } Output: constructor of A constructor of B If you comment the line friend class B, you will encounter below error: test1.cpp: In constructor ‘B::B()’: test1.cpp:9:5: error: ‘A::A()’ is private A(){ ^ test1.cpp:19:11: error: within this context A a1; Using Singleton design pattern: When we want to design a singleton class. This means instead of creating several objects of class, the system is driven by a single object or a very limited number of objects. Named Constructor Idiom : Since constructor has same name as of class, different constructors are differentiated by their parameter list, but if numbers of constructors is more, then implementation can become error prone. With the Named Constructor Idiom, you declare all the class’s constructors in the private or protected sections, and then for accessing objects of class, you create public static functions. For example, consider below CPP program CPP // CPP program to demonstrate // ambiguous nature of constructor // with same no of parameters of same type #include <iostream> using namespace std; class Point { public: // Rectangular coordinates Point(float x, float y); // Polar coordinates (radius and angle) Point(float r, float a); // error: ‘Point::Point(float, float)’ cannot // be overloaded }; int main() { // Ambiguous: Which constructor to be called ? Point p = Point(5.7, 1.2); return 0; } This problem can be resolved by Named Constructor Idiom. The above CPP program can be improved as following : CPP // CPP program to demonstrate // named constructor idiom #include <iostream> #include <cmath> using namespace std; class Point { private: float x1, y1; Point(float x, float y) { x1 = x; y1 = y; }; public: // polar(radius, angle) static Point Polar(float, float); // rectangular(x, y) static Point Rectangular(float, float); void display(); }; // utility function for displaying of coordinates void Point :: display() { cout << "x :: " << this->x1 <<endl; cout << "y :: " << this->y1 <<endl; } // return polar coordinates Point Point :: Polar(float x, float y) { return Point(x*cos(y), x*sin(y)); } // return rectangular coordinates Point Point :: Rectangular(float x, float y) { return Point(x,y); } int main() { // Polar coordinates Point pp = Point::Polar(5.7, 1.2); cout << "polar coordinates \n"; pp.display(); // rectangular coordinates Point pr = Point::Rectangular(5.7,1.2); cout << "rectangular coordinates \n"; pr.display(); return 0; } Output : polar coordinates x :: 2.06544 y :: 5.31262 rectangular coordinates x :: 5.7 y :: 1.2 References : 1) Named Constructor Idiom 2) can a constructor be private in cpp Create Quiz Comment K kartik 32 Improve K kartik 32 Improve Article Tags : C++ cpp-constructor Explore C++ BasicsIntroduction to C++3 min readData Types in C++6 min readVariables in C++4 min readOperators in C++9 min readBasic Input / Output in C++3 min readControl flow statements in Programming15+ min readLoops in C++7 min readFunctions in C++8 min readArrays in C++8 min readCore ConceptsPointers and References in C++5 min readnew and delete Operators in C++ For Dynamic Memory5 min readTemplates in C++8 min readStructures, Unions and Enumerations in C++3 min readException Handling in C++12 min readFile Handling in C++8 min readMultithreading in C++8 min readNamespace in C++5 min readOOP in C++Object Oriented Programming in C++8 min readInheritance in C++6 min readPolymorphism in C++5 min readEncapsulation in C++3 min readAbstraction in C++4 min readStandard Template Library(STL)Standard Template Library (STL) in C++3 min readContainers in C++ STL2 min readIterators in C++ STL10 min readC++ STL Algorithm Library3 min readPractice & ProblemsC++ Interview Questions and Answers1 min readC++ Programming Examples4 min read Like