【嵌入式学习】C++day0313

本文详细介绍了C++中的类定义,包括有参构造函数、析构函数、拷贝构造函数以及输出函数的使用,通过Stu类实例展示了如何在实际编程中管理对象的内存。
摘要由CSDN通过智能技术生成

一、思维导图

二、习题

#include <iostream>

using namespace std;

class Per
{
private:
    string name;
    int age;
    float * high;
    float * weight;
public:
    //有参构造函数
    Per(string n,int a,float h,float w):name(n),age(a),high(new float (h)),weight(new float (w))
    {

    }

    //析构函数
    ~Per()
    {
        delete high;  //释放堆区空间
        delete weight;
    }

    //拷贝构造函数
    Per(const Per &other):name(other.name),age(other.age),high(new float (*(other.high))),weight(new float (*(other.weight)))
    {

    }

    //输出函数
    void show()
    {
    cout << "姓名:" << name << endl;
    cout << "年龄:" << age << endl;
    cout << "身高:" << *high << endl;
    cout << "体重:" << *weight << endl;
    }
};


class Stu
{
private:
    float sorce;
    Per p1;
public:
    Stu(float s,string name, int age,float high,float weight):sorce(s),p1(name,age,high,weight)
    {
        cout << "有参构造函数" << endl;
    }

    //拷贝构造函数
    Stu(const Stu &other):sorce(other.sorce),p1(other.p1)
    {}

    //输出函数
    void show()
    {
        cout << "成绩:" << sorce << endl;
    }
    Per p2=p1;

    //析构函数会自动调用Per的析构函数
};
int main()
{
    Stu s1(98,"张三",18,175,65);
    s1.show();
    s1.p2.show();
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值