编写C++程序:声明一个动物类animal,再由此派生出狗类Dog和猫类Cat。

编写一个animal基类,继承该类,定义派生类dog,cat。基类包含动物名称字段name和获取该字段的函数getname,及虚函数getweight,派生类覆盖该函数,... 编写一个animal基类,继承该类,定义派生类dog,cat。基类包含动物名称字段name和获取该字段的函数getname,及虚函数getweight,派生类覆盖该函数,输出dog和cat自身的重量。在主函数main中,定义dog和cat对象,输出该对象的信息。
用C++程序编写。拜托哪位大神帮帮忙。
展开
 我来答
yu321chang
推荐于2017-09-23 · 超过20用户采纳过TA的回答
知道答主
回答量:29
采纳率:0%
帮助的人:25.7万
展开全部
#include <iostream>
#include <string>
using namespace std;

class animal
{
public:
animal(string n){ name = n; };
string GetName(){ return name; };
virtual float GetWeight()= 0;
private :
string name;

};

class dog :public animal
{
public:
dog(float w, string n) :animal(n){ weight = w; };
float GetWeight() { return weight; };
private:
float weight;
};

class cat : public animal
{
public:
cat(float w, string n) :animal(n){ weight = w; };
float GetWeight() { return weight; };
private:
float weight;
};
void main()
{
dog d(2,"dog1");
cat c(1, "cat1");
cout << d.GetName() << ":" << d.GetWeight() << "KG" << endl;
cout << c.GetName() << ":" << c.GetWeight() << "KG" << endl;
}
匿名用户
2018-04-14
引用yu321chang的回答:
#include <iostream>#include <string>using namespace std;class animal{public: animal(string n){ name = n; }; string GetName(){ return name; }; virtual float GetWeight()= 0;private : string name; };class dog :public animal{public: dog(float w, string n) :animal(n){ weight = w; }; float GetWeight() { return weight; };private: float weight;};class cat : public animal{public: cat(float w, string n) :animal(n){ weight = w; }; float GetWeight() { return weight; };private: float weight;};void main(){ dog d(2,"dog1"); cat c(1, "cat1"); cout << d.GetName() << ":" << d.GetWeight() << "KG" << endl; cout << c.GetName() << ":" << c.GetWeight() << "KG" << endl;}
展开全部
int main()吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式