c++面向对象动物园
时间: 2023-10-06 20:07:45 浏览: 171
面向对象动物园的主要目标是展示动物的信息。为了实现这个目标,我们需要定义几个类:动物园(Zoo)、动物(Animal)、猫(Cat)、狗(Dog)、老虎(Tiger)。其中,动物(Animal)是一个抽象基类,而猫(Cat)、狗(Dog)和老虎(Tiger)是它的派生类。
在动物(Animal)类中,我们有两个数据成员:动物的姓名和年龄。还有一个纯虚函数void Display(),用来显示动物的姓名和年龄。
猫(Cat)、狗(Dog)和老虎(Tiger)类中都有三个成员函数:构造函数、析构函数和重写的函数void Display()。
动物园(Zoo)类有三个数据成员:动物园最多能容纳的动物数(max)、动物园当前动物数(num)和一个指向动物(Animal)的数组(Animal** asp)。并且有四个成员函数:构造函数、析构函数、添加动物函数和显示动物园所有动物信息函数。
在main函数中,我们创建了一个最大容纳数为5的动物园(Zoo z(5)),然后创建了2个猫、2个狗和1个老虎,并将它们添加到动物园中。最后,我们调用了显示动物园所有动物信息的函数(z.ShowAll())。
下面是完整的代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
class Animal {
protected:
string name;
int age;
public:
Animal(string _name, int _age) : name(_name), age(_age) {}
virtual void Display() = 0;
};
class Cat : public Animal {
public:
Cat(string _name, int _age) : Animal(_name, _age) {}
void Display() {
cout << "Cat Name: " << name << endl;
cout << "Cat Age: " << age << endl;
}
};
class Dog : public Animal {
public:
Dog(string _name, int _age) : Animal(_name, _age) {}
void Display() {
cout << "Dog Name: " << name << endl;
cout << "Dog Age: " << age << endl;
}
};
class Tiger : public Cat {
public:
Tiger(string _name, int _age) : Cat(_name, _age) {}
void Display() {
cout << "Tiger Name: " << name << endl;
cout << "Tiger Age: " << age << endl;
}
};
class Zoo {
private:
int max;
int num;
Animal** asp;
public:
Zoo(int _max) : max(_max), num(0), asp(new Animal*[max]) {
for (int i = 0; i < max; i++) {
asp[i = NULL;
}
}
~Zoo() {
for (int i = 0; i < max; i++) {
delete asp[i];
}
delete[] asp;
}
void Add(Animal* ap) {
if (num < max) {
asp[num++] = ap;
}
}
void ShowAll() {
for (int i = 0; i < num; i++) {
asp[i]->Display();
}
}
};
int main() {
Zoo z(5);
Animal* pa = new Cat("AAA", 3);
z.Add(pa);
pa = new Dog("BBB", 1);
z.Add(pa);
pa = new Tiger("CCC", 2);
z.Add(pa);
z.ShowAll();
return 0;
}
```
以上是一个实现面向对象动物园的示例代码,它定义了动物园和动物类的关系,并且能够显示动物的信息。通过使用不同的派生类,我们可以创建不同种类的动物,并将它们添加到动物园中进行展示。
阅读全文