Open In App

C++ | Misc C++ | Question 5

Like Article
Like
Save Article
Save
Share
Report issue
Report

How can we make a C++ class such that objects of it can only be created using new operator?

If user tries to create an object directly, the program produces compiler error.
(A) Not possible
(B) By making destructor private
(C) By making constructor private
(D) By making both constructor and destructor private


Answer: (B)

Explanation: See the following example.

// Objects of test can only be created using new
class Test
{
private:
    ~Test() {}
friend void destructTest(Test* );
};
 
// Only this function can destruct objects of Test
void destructTest(Test* ptr)
{
    delete ptr;
}
 
int main()
{
    // create an object
    Test *ptr = new Test;
 
    // destruct the object
    destructTest (ptr);
 
    return 0;
}

See https://www.geeksforgeeks.org/private-destructor/ for more details.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads