如何从赋值运算符调用复制构造函数?

时间:2014-06-06 20:46:39

标签: c++ copy-constructor

class A {
  ...
  A(const A & a)
  {
     *this = a;
  }

  A & operator=(const A & a)
  {
     if (this != &a) {
         ...
     }
     return *this;
   }
}

这里构造函数调用运算符,我希望相反。

0 个答案:

没有答案