首页 > 代码库 > 剑指offer 复制构造函数

剑指offer 复制构造函数

复制构造函数:

 A(const A &other){value=http://www.mamicode.com/other.value;} 也就是传值参数改为常量引用。

#include<iostream>
using namespace std;
class A
{
    private:
        int value;
    public:
        A(int n){value=http://www.mamicode.com/n;}
        A(const A &other){value=http://www.mamicode.com/other.value;}
        void print(){
            cout<<value<<endl;
        }
};
int main()
{
    A a=10;
    A b=a;
    b.print();
    return 0;
}

 

剑指offer 复制构造函数