C++-进行深度拷贝

构造动态变量进行*m_pi = *that.m_pi

/*
自定义的深拷贝 
*/ 
#include <iostream>

using namespace std; 

class Integer{
public:
    Integer(int i) {
        m_pi = new int; //使用new int 定义地址 
        *m_pi = i; 
    }
    ~Integer(void) {
        delete m_pi; 
    }
    void print(void) {
        cout << "输出的数字是" << *m_pi << endl; 
    }
    /*
    Integer(const Integer& that) {
        cout << "缺省浅拷贝" << endl; 
        m_i = that.m_i; 
    }
    */ 
    Integer(const Integer& that) {
        cout << "深拷贝" << endl;
        m_pi = new int;
        *m_pi = *that.m_pi;     
    }

private:
    int *m_pi; 

}; 

int main() {
    Integer i(200); 
    Integer i2(i); 
    i2.print(); 

}

对字符串进行深度拷贝

/*
string 字符串 
*/ 
#include <iostream>
#include <cstring>

using namespace std; 

class String {
public:
    String(const char* str) {
        m_str = new char[strlen(str)+1]; 
        strcpy(m_str, str); 
    }
    ~String(void) {
        cout << "析构函数" << endl; 
        delete m_str; 
    }
    //深拷贝 
    String(const String& that) {
    //进行字符串的复制操作 m_str
= new char[strlen(that.m_str)+1]; strcpy(m_str, that.m_str); } void print(void) { cout << m_str << endl; } const char* c_str(void) const { return m_str; } private: char* m_str; }; int main() { String s = "hello"; cout << s.c_str() << endl; String s1(s); cout << s1.c_str() << endl; }

 

原文链接: https://www.cnblogs.com/hyq-lst/p/12622470.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    C++-进行深度拷贝

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/339394

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月2日 上午12:04
下一篇 2023年3月2日 上午12:04

相关推荐