Advertisement
Guest User

Untitled

a guest
Sep 18th, 2023
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.04 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Animal {
  5. public:
  6.   string name;
  7.   Animal(string, string, int);
  8.   void print1();
  9.  
  10. protected:
  11.   string type;
  12.   int weight;
  13. };
  14.  
  15. Animal::Animal(string n, string t, int w) {
  16.   name = n;
  17.   type = t;
  18.   weight = w;
  19. }
  20.  
  21. void Animal::print1() {
  22.   cout << "name:" << name << " type:" << type << " weight:" << weight;
  23. }
  24.  
  25. class Cat : public Animal {
  26. public:
  27.   Cat();
  28.   Cat(string, string, int, int, int);
  29.   Cat(const Cat &);
  30.   ~Cat() {
  31.     cout << "Cat " << (void *)this << " destruct..." << endl;
  32.   }
  33.  
  34.   Cat &operator=(const Cat &&rhs) {
  35.     if (this != &rhs) {
  36.       this->body_length = rhs.body_length;
  37.       this->tail_length = rhs.tail_length;
  38.       this->name = std::move(rhs.name);
  39.       this->type = std::move(rhs.type);
  40.       this->weight = rhs.weight;
  41.     }
  42.     cout << "calling Cat " << (void *)this << " move assign operator" << endl;
  43.     return *this;
  44.   }
  45.   void print2();
  46.  
  47. private:
  48.   int body_length;
  49.   int tail_length;
  50. };
  51.  
  52. Cat::Cat() : Animal("n", "t", 0), body_length(0), tail_length(0) {
  53.   cout << "calling Cat " << (void *)(this) << " no argument constructor..."
  54.        << endl;
  55. }
  56.  
  57. Cat::Cat(string n, string t, int w, int b, int a)
  58.     : Animal(n, t, w), body_length(b), tail_length(a) {
  59.   cout << "calling Cat " << (void *)(this) << " argument constructor..." << endl;
  60. }
  61.  
  62. void Cat::print2() {
  63.   print1();
  64.   cout << " body length:" << body_length << " tail length:" << tail_length
  65.        << endl;
  66. }
  67.  
  68. class Human : public Animal {
  69. public:
  70.   Human(string, string, int, int, string);
  71.   void print3();
  72.   Cat pet;
  73.  
  74. protected:
  75.   int height;
  76. };
  77.  
  78. Human::Human(string n, string t, int w, int h, string p)
  79.     : Animal(n, t, w), height(h) {
  80.   cout << "calling Human argument constructor..." << endl;
  81.   pet = Cat(p, "black", 7, 30, 20);
  82. }
  83.  
  84. void Human::print3() {
  85.   print1();
  86.   cout << " height:" << height << " pet:" << pet.name << endl;
  87. }
  88.  
  89. int main() {
  90.   Human Betty("Betty", "Asian", 46, 160, "Kitty");
  91.   Betty.print3();
  92.   Betty.pet.print2();
  93.   return 0;
  94. }
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement