c++编译器至少给一个类添加4个函数
- 默认构造函数(无参,函数体为空)
- 默认析构函数(无参,函数体为空)
- 默认拷贝构造函数,对属性进行值拷贝
- 赋值运算符 operator=, 对属性进行值拷贝
如果类中有属性指向堆区,做赋值操作时也会出现深浅拷贝问题
#include<iostream>
using namespace std;class Person {
public:Person(int age) {m_Age = new int(age);}Person& operator=(Person& p){if (m_Age != NULL){delete m_Age;m_Age = NULL;}m_Age = new int(*p.m_Age); return *this; }~Person(){if (m_Age != NULL){delete m_Age;m_Age = NULL;}}int *m_Age;
};void test01()
{Person p1(18);Person p2(20);Person p3(30);p3 = p2 = p1; cout << "p1的年龄为:" << *p1.m_Age << endl;cout << "p2的年龄为:" << *p2.m_Age << endl;cout << "p3的年龄为:" << *p3.m_Age << endl;}int main()
{test01();return 0;
}