标签: c++ copy-constructor
class A { ... A(const A & a) { *this = a; } A & operator=(const A & a) { if (this != &a) { ... } return *this; } }
这里构造函数调用运算符,我希望相反。