C++‘work‘23.6.8

文章展示了如何使用C++编程语言定义一个Person类,包含私有成员和公有成员方法,并派生出Stu类。Stu类增加了额外的属性和方法。在主函数中,创建了一个Stu对象并调用了其show方法,显示了对象的信息。程序运行结果显示了构造和析构函数的调用过程。
摘要由CSDN通过智能技术生成

1.整理思维导图


2.整理上课代码,完成优化
Person类,私有成员(姓名,年龄,身高,体
重),公有成员方法(有参构造函数、析构函数、
show函数)
Stu类,继承派生自Person类,私有成员(成
绩,班级),公有成员方法(有参构造函数、析构函
数、show函数),实例化一个Stu对象并调用show
函数

#include <iostream>
using namespace std;

class Person
{
    string name;
    int age;
    int high;
    int weight;
public:
//    Person(){cout << "Person无参构造" << endl;}
    Person(string name,int age,int high,int weight):name(name),age(age),high(high),weight(weight)
    {
        this->name = name;
        this->age = age;
        this->high = high;
        this->weight = weight;
        cout << "Person有参构造" << endl;
    }
    ~Person()
    {
        cout << "Person析构函数" << endl;
    }
    void show()
    {
        cout << name << age << high << weight << endl;
    }
};

class Stu:public Person
{
    int score;
    string class_;
public:
//    Stu(){cout << "Stu无参构造" << endl;}
    Stu(int score,string class_,string name,int age,int high,int weight):Person(name,age,high,weight)
    {
        this->score = score;
        this->class_ = class_;
    }
    ~Stu()
    {
        cout << "Stu析构函数" << endl;
    }
    void show()
    {
        cout << "分数 " << score << "班级 " << class_ << endl;
    }
};

int main()
{
    Stu s1(88,"三二","zz",18,180,70);
    s1.Person::show();
    s1.show();

    return 0;
}

运行结果:

Person有参构造
zz  18  180  70
分数  88  班级  三二
Stu析构函数
Person析构函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值