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
Write a Program to find the largest of 4 no using macros.
Is atoi safe?
What is the difference between method overloading and method overriding in c++?
What does return 0 do in c++?
Is there any difference between int [] a and int a [] in c++?
How does the copy constructor differ from the assignment operator (=)?
What is the copy-and-swap idiom?
What is c++ hiding?
Why was c++ made?
What is nested class in c++?
What is pointer in c++ with example?
What sorting algorithm does c++ use?
What is the full name of logo?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Can we use pointers in c++?