本文介绍: 1.编译器提供的默认子类拷贝构造函数调用父类拷贝构造函数。2.重写子类拷贝构造函数默认不会调用父类的拷贝构造函数,而是调用父类默认构造函数。3.重写子类拷贝构造函数时应当显式的告诉编译器调用父类的拷贝构造函数构造父类,从而避免调用子类拷贝构造函数创建一个对象时,导致子类中包含父类的那部分数据丢失的情况发生。具体做法为:Child(const Child &other) : Parent(other);

一. 编译器提供的默认子类拷贝构造函数调用父类拷贝构造函数

#include <iostream>
#include <string>
using namespace std;

class Parent {
public:
    Parent(string home_address = "中国") : m_home_address(home_address) {
        cout << "调用父类构造函数" << endl;
    }
    Parent(const Parent &amp;other) {
        m_home_address = other.m_home_address;
        cout << "调用父类拷贝构造函数" << endl;
    }
    string get_home_address() {return m_home_address;}
private:
    string m_home_address;
};

class Child : public Parent {
public:
    Child(string home_address = "") : Parent(home_address) {
        cout << "调用子类构造函数" << endl;
    }
private:
};

int main(int argc, char *argv[]) {
    Child c1("广州");
    cout << "c1 home_address = " << c1.get_home_address() << endl << endl;

    Child c2 = c1; // 调用了子类的默认拷贝构造函数
    cout << "c2 home_address = " << c2.get_home_address() << endl;
    return 0;
}

打印信息中,我们可以知道:

1. 创建一个对象 c1 时,先调用父类构造函数,后调用子类构造函数。

2. 创建 c2 对象时,执行编译器提供的默认子类拷贝构造函数,具体构造顺序为:先调用父类拷贝构造函数,后调用编译器提供的默认子类拷贝构造函数。从而打印出 c2 home_address = 广州

二. 重写的子类拷贝构造函数默认不会调用父类的拷贝构造函数,而是调用父类默认构造函数

#include <iostream>
#include <string>
using namespace std;

class Parent {
public:
    Parent(string home_address = "中国") : m_home_address(home_address) {
        cout << "调用父类构造函数" << endl;
    }
    Parent(const Parent &amp;other) {
        m_home_address = other.m_home_address;
        cout << "调用父类拷贝构造函数" << endl;
    }
    string get_home_address() {return m_home_address;}
private:
    string m_home_address;
};

class Child : public Parent {
public:
    Child(string home_address = "") : Parent(home_address) {
        cout << "调用子类构造函数" << endl;
    }
    Child(const Child &amp;other) {
        cout << "调用子类拷贝构造函数" << endl;
    }
private:
};

int main(int argc, char *argv[]) {
    Child c1("广州");
    cout << "c1 home_address = " << c1.get_home_address() << endl << endl;

    Child c2 = c1; // 调用了子类的默认拷贝构造函数
    cout << "c2 home_address = " << c2.get_home_address() << endl;
    return 0;
}

打印信息中,我们可以知道:

创建 c2 对象时,执行了子类拷贝构造函数,具体构造顺序为:先调用父类默认构造函数,后调用子类拷贝构造函数。从而打印出 c2 home_address = 中国

三. 重写的子类拷贝构造函数时应当显式的告诉编译器去调用父类的拷贝构造函数去构造父类,从而避免调用子类拷贝构造函数去创建一个对象时,导致子类中包含父类的那部分数据丢失的情况发生。具体做法为:Child(const Child &amp;other) : Parent(other);

#include <iostream>
#include <string>
using namespace std;

class Parent {
public:
    Parent(string home_address = "中国") : m_home_address(home_address) {
        cout << "调用父类构造函数" << endl;
    }
    Parent(const Parent &amp;other) {
        m_home_address = other.m_home_address;
        cout << "调用父类拷贝构造函数" << endl;
    }
    string get_home_address() {return m_home_address;}
private:
    string m_home_address;
};

class Child : public Parent {
public:
    Child(string home_address = "") : Parent(home_address) {
        cout << "调用子类构造函数" << endl;
    }
    Child(const Child &amp;other) : Parent(other) {
        cout << "调用子类拷贝构造函数" << endl;
    }
private:
};

int main(int argc, char *argv[]) {
    Child c1("广州");
    cout << "c1 home_address = " << c1.get_home_address() << endl << endl;

    Child c2 = c1; // 调用了子类的默认拷贝构造函数
    cout << "c2 home_address = " << c2.get_home_address() << endl;
    return 0;
}

打印信息中,我们可以知道:

创建 c2 对象时,执行了子类拷贝构造函数,具体构造顺序为:先调用父类拷贝构造函数,后调用子类拷贝构造函数。从而打印出 c2 home_address = 广州

原文地址:https://blog.csdn.net/d704791892/article/details/134709337

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_18291.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注