C++ day3

1.思维导图

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

#include <iostream>

using namespace std;

class Per
{
private:
    string name;
    int age;
    double *height;
    double *weight;
public:
    //无参构造函数
    Per()
    {
        cout << "Per::无参构造函数" << endl;
    }
    //有参构造函数
    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(const Per &other):name(other.name),age(other.age),height(other.height),weight(other.weight)
//    {
//        cout << "Per::浅拷贝" << endl;
//    }
    //深拷贝构造函数
    Per(const Per &other):name(other.name),age(other.age),height(new double(*(other.height))),weight(new double(*(other.weight)))
    {
        cout << "Per::深拷贝" << endl;
    }
    //析构函数
    ~Per()
    {
        cout << "Per::析构函数" << endl;
    }

    void show()
    {
        cout << "姓名:" << name << "年龄:" << age << "身高:" << *(height) << "体重:" << *(weight) << endl;
    }
};

class Stu
{
private:
    int score;
    Per p1;
public:
    //无参构造函数
    Stu()
    {
        cout << "Stu::无参构造函数" << endl;
    }
    //有参构造函数
    Stu(int score,Per p1):score(score),p1(p1)
    {
        cout << "Stu::有参构造函数" << endl;
    }
    //析构函数
    ~Stu()
    {
        cout << "Stu::析构函数" << endl;
    }
    void show()
    {
        cout << "成绩:" << score << endl;
        p1.show();
    }
};
int main()
{
    Per r1();    //自动调用无参构造函数
    Per r2("张三",23,178,120);     //自动调用有参构造函数
    Per r3=r2;
    Stu s1;
    Stu s2(88,r2);
    s2.show();

    return 0;
}
相关推荐
奶香臭豆腐9 分钟前
C++ —— 模板类具体化
开发语言·c++·学习
不想当程序猿_15 分钟前
【蓝桥杯每日一题】分糖果——DFS
c++·算法·蓝桥杯·深度优先
晚夜微雨问海棠呀16 分钟前
长沙景区数据分析项目实现
开发语言·python·信息可视化
graceyun17 分钟前
C语言初阶习题【9】数9的个数
c语言·开发语言
cdut_suye26 分钟前
Linux工具使用指南:从apt管理、gcc编译到makefile构建与gdb调试
java·linux·运维·服务器·c++·人工智能·python
波音彬要多做1 小时前
41 stack类与queue类
开发语言·数据结构·c++·学习·算法
捕鲸叉1 小时前
C++软件设计模式之外观(Facade)模式
c++·设计模式·外观模式
Swift社区1 小时前
Excel 列名称转换问题 Swift 解答
开发语言·excel·swift
一道微光1 小时前
Mac的M2芯片运行lightgbm报错,其他python包可用,x86_x64架构运行
开发语言·python·macos
矛取矛求1 小时前
QT的前景与互联网岗位发展
开发语言·qt