C++ 动物类

#include <iostream>
#include <cstring>
using namespace std;
// 设计一个基类 动物类(属性:体重、颜色、年龄 、性别    行为:吃喝拉撒)
// 设计一个猫类 继承动物类(属性:体重、颜色、年龄 、性别、    行为:吃喝拉撒、抓老鼠)
// 定义一个猫对象 ---断尾猫,调用猫的行为
class animal
{
public:
    float weight;
    string color;
    int age;
    string sex;
    animal(float weight = 1, string color = "yellow", int age = 1, string sex = "nan")
    {
        this->weight = weight;
        this->color = color;
        this->age = age;
        this->sex = sex;
    }

    void eat() { cout << "动物会吃" << endl; }
    void sleep() { cout << "动物会喝水" << endl; }
    void run() { cout << "动物会拉屎" << endl; }
    void drink() { cout << "动物会睡觉" << endl; }

protected:
    int home;

private:
    int id;
};

class cat : public animal
{
public:
    string lei = "cat";
    cat(float w = 2, string c = "yellow11", int a = 2, string s = "nan")
    {
        weight = w;
        color = c;
        age = a;
        sex = s;
    }
    void function()
    {
        cout << "猫可以吃饭、喝水、拉屎、睡觉" << endl;
    }
    void zhua()
    {
        cout << "猫会抓老鼠" << endl;
    }
    void show(void)
    {
        cout<<"猫的体重是:"<<weight<<"Kg  猫的颜色是:"<<color<<"  我的猫"<<age<<"岁了"<<"是"<<sex<<"猫"<<endl;
    }
};

int main()
{
    cat duanweicat;
    duanweicat.function();
    duanweicat.zhua();
    duanweicat.eat();
    duanweicat.drink();
    duanweicat.run();
    duanweicat.sleep();
    duanweicat.show();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值