Advertisements
Advertisements
Question
Given the following C++ code, answer the following question.
class TestMeOut
{
public:
~TestMeOut() //Function 1
{cout<<“Leaving the exam hall”<<endl;} TestMeOut() //Function 2
{cout<<“Appearing for exam”<<endl;}
void MyWork() //Function 3
{cout<<“Answering”<<endl;} };
In Object-Oriented Programming, what is Function 1 referred to, and when does it get invoked/called?
One Line Answer
Solution
Function 1 is the ‘destructor’.
It is executed automatically when an object of the class TestMeOut goes out of scope.
shaalaa.com
Is there an error in this question or solution?