不使用复制构造函数

时间:2014-04-30 07:17:49

标签: c++ copy-constructor

我是C ++和研究拷贝构造函数的新手。在这个简单的例子中,我想检查是否真正明确定义的复制构造函数是活动的。我在那里放了一个cout-string,我看不出它已打印出来。

问题:我想知道,为什么不使用复制构造函数?因为在main函数体中创建了一个对象的副本。

Person timmy_clone = timmy;

heres是完整代码:

#include <iostream>

class Person {
public:
   int age;

   Person(int a) {
      this->age = a;
   }

   Person(const Person& person) {
      std::cout << "hello\n";
   }
};

int main() {
   Person timmy(10);
   Person sally(15);

   Person timmy_clone = timmy;
   std::cout << "timmy age " << timmy.age << " " << "sally age " << sally.age << " " <<   "timmy_clone age " << timmy_clone.age << std::endl;
   timmy.age = 23;
   std::cout << "timmy age " << timmy.age << " " << "sally age " << sally.age << " " << "timmy_clone age " << timmy_clone.age << std::endl;

   std::cout << &timmy << std::endl;
   std::cout << &timmy_clone << std::endl;

}

编辑:我使用MinGW并使用-o

进行编译

g ++ main.cpp -o main.exe

edit2:这是另一个使用显式定义的复制构造函数的codesnippet。 仍然想知道为什么它在这里使用而不是在第一个例子中?

   #include <iostream>

 class Array {
 public:
   int size;
   int* data;

  Array(int sz)
    : size(sz), data(new int[size]) {
  }
  Array(const Array& other)
     : size(other.size), data(other.data) {std::cout <<"hello\n";}

~Array()
{
    delete[] this->data;
}
 };


int main()
{
   Array first(20);
   first.data[0] = 25;

  {
    Array copy = first;
    std::cout << first.data[0] << " " << copy.data[0] << std::endl;
  }    // (1)

   first.data[0] = 10;    // (2)

  std::cout << "first data[0]: " << first.data[0];
}

1 个答案:

答案 0 :(得分:2)

您的代码按预期工作。请参阅here

也许你对copy-elision感到困惑,这在这里不适用。