Do we have private destructors?

Answer Posted / binoy mathew

#include <iostream>
#include <stdlib.h>

class t
{
public:
t()
{
printf("in constr");
}

private: // note that constructor is private here
~t()
{
printf("in destr");
}
};


int main()
{
t *t1 = new t; // create a new obj
delete t1; // delete the obj, which calls destructor
return 0;
}

Try to compile the above code.
following error results...

[root@localhost Desktop]# g++ test.cpp
test.cpp: In function ‘int main()’:
test.cpp:13: error: ‘t::~t()’ is private
tt.cpp:: error: within this context
[root@localhost Desktop]#

....implies, we can't have destructor private.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a Program to find the largest of 4 no using macros.

796


Is atoi safe?

800


What is the difference between method overloading and method overriding in c++?

759


What does return 0 do in c++?

793


Is there any difference between int [] a and int a [] in c++?

738






How does the copy constructor differ from the assignment operator (=)?

828


What is the copy-and-swap idiom?

807


What is c++ hiding?

855


Why was c++ made?

830


What is nested class in c++?

679


What is pointer in c++ with example?

741


What sorting algorithm does c++ use?

853


What is the full name of logo?

808


Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h

856


Can we use pointers in c++?

794