C++学习day3

目录

作业:

[1> 思维导图](#1> 思维导图)

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

效果图:


作业:

1> 思维导图

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

cpp 复制代码
#include <iostream>

using namespace std;
//设计一个per类和stu类
class Per
{
private://私有的
    string name;//姓名
    int age;//年龄
    double *hight;//身高
    double *weight;//体重
public:
    //构造函数
    Per(string n,int a,double h,double w):name(n),age(a),hight(new double(h)),weight(new double(w))
    {
        cout << "Per::有参构造函数" << endl;

    }
    string GetName()const
    {
            return name;
        }

        int GetAge() const
        {
            return age;
        }

        double GetHight() const
        {
            return *hight;
        }

        double GetWeight() const
        {
            return *weight;
        }

    void show()
    {
        cout << "姓名:" << name << endl;
        cout << "年龄:" << age << endl;
        cout << "身高:" << *hight << endl;
        cout << "体重:" << *weight << endl;
    }
    //析构函数
    ~Per()
    {
        cout << "Per::析构函数" << endl;
        delete hight;
        delete weight;

    }


};
class Stu
{
private:
    int score;//成绩
     Per p1;//学生信息
public:
     //构造函数
     Stu(int s,string n,int a,double h,double w): score(s), p1(n,a,h,w)
     {
         cout << "Stu:: 有参构造函数" << endl;
     }
    void show()
    {
        cout << "成绩:"<< score << endl;
        p1.show();
    }
    //拷贝构造函数
    Stu(const Stu &other):score(other.score),p1(other.p1)
    {
        cout << "Stu::拷贝构造函数" <<endl;

    }
    Stu& operator=(const Stu& other)
    {
        if (this == &other)
            return *this;

        score = other.score;
        p1 = Per(other.p1.GetName(), other.p1.GetAge(), other.p1.GetHight(), other.p1.GetWeight());

        return *this;
    }


    //析构函数
    ~Stu()
    {
        cout << "Stu:: 析构函数" << endl;

    }

};

int main()
{
    Stu S1(100,"zhangsan",23,180.7,100.98);//有参构造函数
    S1.show();
    Stu S2(S1);//拷贝构造函数


    return 0;
}

效果图:

相关推荐
爱吃喵的鲤鱼几秒前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++
懒惰才能让科技进步23 分钟前
从零学习大模型(十二)-----基于梯度的重要性剪枝(Gradient-based Pruning)
人工智能·深度学习·学习·算法·chatgpt·transformer·剪枝
DARLING Zero two♡27 分钟前
关于我、重生到500年前凭借C语言改变世界科技vlog.16——万字详解指针概念及技巧
c语言·开发语言·科技
7年老菜鸡28 分钟前
策略模式(C++)三分钟读懂
c++·qt·策略模式
Gu Gu Study29 分钟前
【用Java学习数据结构系列】泛型上界与通配符上界
java·开发语言
Ni-Guvara36 分钟前
函数对象笔记
c++·算法
love_and_hope38 分钟前
Pytorch学习--神经网络--搭建小实战(手撕CIFAR 10 model structure)和 Sequential 的使用
人工智能·pytorch·python·深度学习·学习
似霰41 分钟前
安卓智能指针sp、wp、RefBase浅析
android·c++·binder
Chef_Chen41 分钟前
从0开始学习机器学习--Day14--如何优化神经网络的代价函数
神经网络·学习·机器学习
芊寻(嵌入式)1 小时前
C转C++学习笔记--基础知识摘录总结
开发语言·c++·笔记·学习