6.5 作业

设计一个Per类,类中包含私有成员:姓名、年龄、指针成员身高、体重,再设计一个Stu类,类中包含私有成员:成绩、Per类对象p1,设计这两个类的构造函数、析构函数。

cpp 复制代码
#include <iostream>

using namespace std;
class Per
{
private:
    string name;
    int age;
    double *height;
    double *weight;
public:
    Per(string name,int age,double height,double weight):name(name),age(age),height(new double(height)),weight(new double(weight))
    {
        cout << "Per::构造类型" << endl;
    }
    ~Per()
    {
        delete height;
        delete weight;
        height=nullptr;
        weight=nullptr;
        cout << "Per::析构类型" << endl;

    }
    void show()
    {
        cout << name << " " << age << " " << *height << " " << *weight << endl;
    }
};
class Stu
{
private:
    double sroce;
    Per p1;
public:
    Stu(double sroce,string name,int age,double height,double weight):sroce(sroce),p1(name,age,height,weight)
    {
        cout << "Stu::构造类型" << endl;

    }
    ~Stu()
    {

        cout << "Stu::析构类型" << endl;

    }
    void show()
    {
        cout << sroce << " ";
        p1.show();
    }

};
int main()
{
    Stu s1(99.8,"lisi",18,175.6,140.3);
    s1.show();

    return 0;
}

思维导图:

相关推荐
懒羊羊大王&15 小时前
模版进阶(沉淀中)
c++
owde15 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon16 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi16 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
tadus_zeng16 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP16 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
胡斌附体17 小时前
qt socket编程正确重启tcpServer的姿势
开发语言·c++·qt·socket编程
GalaxyPokemon17 小时前
Muduo网络库实现 [十] - EventLoopThreadPool模块
linux·服务器·网络·c++
守正出琦17 小时前
日期类的实现
数据结构·c++·算法
ChoSeitaku17 小时前
NO.63十六届蓝桥杯备战|基础算法-⼆分答案|木材加工|砍树|跳石头(C++)
c++·算法·蓝桥杯