文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

浅析C++浅拷贝与深拷贝的联系和区别

2024-04-02 19:55

关注

文章简述

c++中构造函数分为三类:无参构造、带参构造和拷贝构造,其中拷贝构造可分为默认拷贝(浅拷贝)、深拷贝,在程序中,这里我们主要讲浅拷贝和深拷贝的联系和区别。

首先,我们要明白拷贝至少需要两个对象,并且在拷贝时,我们可以用const来保护原对象的内容,具体用法:----- <类名>(const<类名> 对象) -----进行复制的对象 ,当我们使用栈开辟空间进行复制时,不会出现意外,如下:


#include <iostream>
using namespace std;
class student
{
    private:
        string name;       //--------------//
        int age;
    public:
        student()    //出现带参构造,需要默认构造
        {
            cout << "默认构造" << endl;
        }
        student(string m_name, int m_age)
        {
            cout << "name:" << m_name << endl << "age:" << m_age << endl;
            cout << "带参构造" << endl;
        }
        ~student()
        {
            cout << "析构函数" << endl;
        }
};
void test1()
{
    student s1 = student("tom", 12);
    student s2 = s1;        //利用栈进行默认复制
}
int main()
{
    test1();        //引用函数.
    return 0;
}

结果如图:

name:tom

age:12

带参构造

析构函数

析构函数

我们可以发现,复制后进行输出时只有一个带参构造和两个析构函数,说明了栈中系统自动申请又释放了两次空间,但是这个操作却在自己创建空间(堆)时,却是错误的,此时的代码又有所不同:


#include <iostream>
using namespace std;
class student
{
    private:
        string name;
        //int age;
        int *age;    //定义指针age
    public:
        student()
        {
            cout << "默认构造" << endl;
        }
#if 0      //------------------------------------------
        student(string m_name, int m_age)
        {
            cout << "name:" << m_name << endl << "age:" << m_age << endl;
            cout << "带参构造" << endl;
        }
#endif    //-------------------------------------------
        student(int m_age)
        {
            this->age = new int(m_age);
            cout << "开辟空间" << endl;
        }
        ~student()
        {   
            delete age;    //开辟使用完成,在析构进行释放age操作
            cout << "析构函数" << endl;
        }
        int get_age()
        {
            return *age;
        }
};
void test1()
{
    //student s1 = student("tom", 12);
    //student s2 = s1;
    student s1(10);    //定义年龄为10,进行复制
    student s2 = s1;
}
int main()
{
    test1();       //调用函数
    return 0;
}

结果:

开辟空间

析构函数

free(): double free detected in tcache 2

已放弃 (核心已转储)

这里我们只调用了*age这个参数,但已经很明显的看到结果,错误信息为两次释放该空间,在开辟这片空间时,又进行重复释放操作,很明显这是系统所不允许的。

接下来进行深拷贝:


#include <iostream>
using namespace std;
class student
{
    private:
        string name;
        //int age;
        int *age;
    public:
        student()
        {
            cout << "默认构造" << endl;
        }
#if 0   //--------------------------------------
        student(string m_name, int m_age)
        {
            cout << "name:" << m_name << endl << "age:" << m_age << endl;
            cout << "带参构造" << endl;
        }
#endif  //--------------------------------------
        student(int m_age)
        {
            this->age = new int(m_age);
            cout << "开辟空间" << endl;
        }
        //-----------深浅拷贝-------------------
        //student(const student &s)
        //{
        //    this->age = s.age;
        //    cout << "浅拷贝" << endl;
        //
        //}
        student(const student &s)
        {
            this->age = new int(*s.age); //创建一片新的空间进行储存
            cout << "深拷贝" << endl;
        }
        //--------------------------------------
        ~student()
        {   
            delete age;
            cout << "析构函数" << endl;
        }
        int get_age()
        {
            return *age;
        }
};
void test1()
{
    //student s1 = student("tom", 12);
    //student s2 = s1;
    student s1(10);
    student s2 = s1;
}
int main()
{
    test1();
    return 0;
}

开辟空间

深拷贝

析构函数

析构函数

此时结果为正确,这里释放的是两片一样内容但地址不一样的空间。

到此,*我们就能总结出:浅拷贝(默认拷贝)是两个指针申请同一片空间地址,而在释放时,也是同一片堆内存;深拷贝是对指针所指向的内容进行拷贝,同时两个指针指向的是不同空间地址,所以在释放时需要释放两次。

到此这篇关于浅析C++浅拷贝与深拷贝的联系和区别的文章就介绍到这了,更多相关C++浅拷贝与深拷贝内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯