C ++拷贝构造函数调用其他构造函数

时间:2018-05-07 18:06:51

标签: c++

我有这个代码。我不是那么精通C ++,所以我会问几个问题:

#include <iostream>

using namespace std;

class Line {

   public:
      int getLength( void );
      Line( int len );             // simple constructor
      Line( const Line &obj);  // copy constructor
      ~Line();                     // destructor

   private:
      int *ptr;
};

// Member functions definitions including constructor
Line::Line(int len) {
   cout << "Normal constructor allocating ptr" << endl;

   // allocate memory for the pointer;
   ptr = new int;
   *ptr = len;
}

Line::Line(const Line &obj) {
   cout << "Copy constructor allocating ptr." << endl;
   ptr = new int;
   cout<<&obj<<endl;
   *ptr = *obj.ptr; // copy the value
}

Line::~Line(void) {
   cout << "Freeing memory!" << endl;
   delete ptr;
}

int Line::getLength( void ) {
   return *ptr;
}

void display(Line obj) {
   cout << "Length of line : " << obj.getLength() <<endl;
}

// Main function for the program
int main() {

   int a = 10;
   cout<<&a<<endl;
   Line line(a);

   display(line);

   return 0;
}
  1. 这里我没有看到我们称之为复制构造函数的地方。
  2. 析构函数被调用两次。第二个对象在哪里创建?
  3. Line::Line(const Line &obj)收到a的地址作为参数?我猜不会。但为什么? a本身不是Line的实例,为什么函数接受呢?
  4. Line::Line(const Line &obj)Line::Line(const Line obj)
  5. 之间的区别
  6. 你能否解释一下*ptr = *obj.ptr;。从这里我只知道lhs,它解除引用ptr(也就是设置一个对象的值)。但我没有得到rhs中的内容?
  7. 为了清楚起见,如果您使用较少的技术术语和更多示例进行解释,我将不胜感激

    上面的代码输出:

    0x7fff692196a4
    Normal constructor allocating ptr
    Copy constructor allocating ptr.
    0x7fff69219698
    Length of line : 10
    Freeing memory!
    Freeing memory!
    

0 个答案:

没有答案