Advertisements
Advertisements
Question
Answer the question after going through the following class.
class Book {
int BookCode ; char Bookname[20];float fees;
public:
Book( ) //Function 1
{ fees=1000;
BookCode=1;
strcpy(Bookname,"C++"); }
void display(float C) //Function 2
{ cout<<BookCode<<":"<<Bookname<<":"<<fees<<endl; }
~Book( ) //Function 3
{ cout<<"End of Book Object"<<endl; }
Book (intSC,char S[ ],float F) ; //Function 4
};
Which concept is illustrated by Function3? When is this function called/invoked?
One Line Answer
Solution
Function 3 is the destructor of the class. Function 3 is executed when the object of the class book goes out of scope.
shaalaa.com
Is there an error in this question or solution?
Chapter 15: Polymorphism - Evaluation - Section - D [Page 258]