本文主要是介绍C++ 自定义类型属性的拷贝过程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream>
#include <string>
using namespace std;
class P {
public:
int id;
string name;
public:
P() { cout << "wu can p gou zao " << endl; }
P(int id, string name) { cout << "you can p gou zao" << endl; }
P(const P &p) { cout << "p de 拷贝构造函数" << endl; }
};
class Person {
public:
int id2 = 202;
int id1 = 201;
P p;
public:
Person() { cout << "person gou zao " << endl; }
};
int main(int argc, char const *argv[]) {
Person p1;
// 默认情况下,会调用自定义类型属性的拷贝构造函数
Person p2 = p1;
return 0;
}
这篇关于C++ 自定义类型属性的拷贝过程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!