c++定义一个dog类,包含age,weight等属性以及对这些属性操作的方法。实现并测试这个类?

 我来答
物理公司的
2019-10-28 · TA获得超过5695个赞
知道大有可为答主
回答量:6105
采纳率:86%
帮助的人:1374万
展开全部
#include <iostream> using namespace std; class dog{ int age; float weight; string name; public: dog(string name, int age, float weight) { this->name = name; this->age = age; this->weight = weight; } int getAge() { return age; } float getWeight() { return weight; } string getName() { return name; } void changeName(string name) { this->name = name; } void setAge(int age) { this->age = age; } void setWeight(float w) { weight = w; } void bark() { cout<<"Woof woof!"<<endl; } void showInfo() { cout<<"Dog Info."<<endl; cout<<"name\tage\tweight"<<endl; cout<<getName()<<'\t'<<getAge()<<'\t'<<getWeight()<<endl; }}; int main(){ dog dog1("Tom", 2, 5.3); dog1.bark(); dog1.showInfo(); dog1.changeName("Mary"); dog1.setAge(3); cout<<"After change the infomation of the dog"<<endl; dog1.showInfo(); return 0;}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
l7722526
2019-10-28 · TA获得超过2.7万个赞
知道大有可为答主
回答量:2.8万
采纳率:84%
帮助的人:3774万
展开全部
#include <cstdlib>
#include<iostream>
using namespace std;

class dog
{
private:
int m_age;
int m_weight;
public:
dog():m_age(0),m_weight(0){}
void setAge(int i){m_age=i;}
void setWeight(int i){m_weight=i;}
int age(){return m_age;}
int weight(){return m_weight;}
};

int main()
{
dog d;
cout<<d.age()<<" "<<d.weight()<<endl;
return 0;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式