Westonci.ca is the Q&A platform that connects you with experts who provide accurate and detailed answers. Explore thousands of questions and answers from knowledgeable experts in various fields on our Q&A platform. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.
Sagot :
Answer:
Following are the class definition code to this question:
class UpdatedBook : BookInfo//defining a class UpdatedBook that inherits the BookInfo class
{
public:
int edition_Number;//defining an integer variable
UpdatedBook (string title,string author,int edition):BookInfo(b_title,b_author)//defining a constructor that
{
edition_Number=edition;
}
int getEdition_Number()
{
return edition_Number;
}
};
Explanation:
In this question, the "BookInfo" class is not defined, that's why we define this code as above.
In this code, a class "UpdatedBook" is defined that inherits its base class "BookInfo" inside the "UpdatedBook" class an integer variable "edition_Number" is declared, which is used to holding the integer value.
In the next step, a parameterized constructor is declared, that accepts a three-parameter and also inherits its base class parameterized constructor, and at the last, a get method is used that returns the edition number value.
Thank you for choosing our platform. We're dedicated to providing the best answers for all your questions. Visit us again. Thank you for your visit. We're committed to providing you with the best information available. Return anytime for more. We're glad you chose Westonci.ca. Revisit us for updated answers from our knowledgeable team.