这篇教程C++ 拷贝构造函数写得很实用,希望能帮到您。 拷贝构造函数是一种特殊的构造函数,它在创建对象时,是使用同一类中之前创建的对象来初始化新创建的对象。拷贝构造函数通常用于: 通过使用另一个同类型的对象来初始化新创建的对象。 复制对象把它作为参数传递给函数。 复制对象,并从函数返回这个对象。
如果在类中没有定义拷贝构造函数,编译器会自行定义一个。如果类带有指针变量,并有动态内存分配,则它必须有一个拷贝构造函数。拷贝构造函数的最常见形式如下: classname (const classname &obj) { } 在这里,obj 是一个对象引用,该对象是用于初始化另一个对象的。 实例#include <iostream> using namespace std; class Line{ public: int getLength( void ); Line( int len ); Line( const Line &obj); ~Line(); private: int *ptr;}; Line::Line(int len){ cout << "调用构造函数" << endl; ptr = new int; *ptr = len;} Line::Line(const Line &obj){ cout << "调用拷贝构造函数并为指针 ptr 分配内存" << endl; ptr = new int; *ptr = *obj.ptr; } Line::~Line(void){ cout << "释放内存" << endl; delete ptr;}int Line::getLength( void ){ return *ptr;} void display(Line obj){ cout << "line 大小 : " << obj.getLength() <<endl;} int main( ){ Line line(10); display(line); return 0;} 当上面的代码被编译和执行时,它会产生下列结果: 调用构造函数调用拷贝构造函数并为指针 ptr 分配内存line 大小 : 10释放内存释放内存 下面的实例对上面的实例稍作修改,通过使用已有的同类型的对象来初始化新创建的对象: 实例#include <iostream> using namespace std; class Line{ public: int getLength( void ); Line( int len ); Line( const Line &obj); ~Line(); private: int *ptr;}; Line::Line(int len){ cout << "调用构造函数" << endl; ptr = new int; *ptr = len;} Line::Line(const Line &obj){ cout << "调用拷贝构造函数并为指针 ptr 分配内存" << endl; ptr = new int; *ptr = *obj.ptr; } Line::~Line(void){ cout << "释放内存" << endl; delete ptr;}int Line::getLength( void ){ return *ptr;} void display(Line obj){ cout << "line 大小 : " << obj.getLength() <<endl;} int main( ){ Line line1(10); Line line2 = line1; display(line1); display(line2); return 0;} 当上面的代码被编译和执行时,它会产生下列结果: 调用构造函数调用拷贝构造函数并为指针 ptr 分配内存调用拷贝构造函数并为指针 ptr 分配内存line 大小 : 10释放内存调用拷贝构造函数并为指针 ptr 分配内存line 大小 : 10释放内存释放内存释放内存 C++ 类构造函数 & 析构函数 C++ 友元函数 |