Exercises OOP 2

Exercise 2

Write a program with a mother class and an inherited daugther class.Both of them should have a method void display ()that prints a message (different for mother and daugther).In the main define a daughter and call the display() method on it.
Solution:
#include<iostream>
using namespace std;
class mother{
   public:
      void display(){
       cout<<"mother: display function \n";
}
};
class daughter: public mother{
   public:
       void display(){
      cout<<"daughter: display function\n\n";
}
};
int main(){
   daughter rita;
   rita.display();
   return 0;
}

Nhận xét