创建不使用虚拟基类的对象的克隆

时间:2010-09-30 14:10:57

标签: c++ virtual deep-copy shallow-copy

#include<iostream>
using namespace std;

class Something
{
  public:
  int j;
  Something():j(20) {cout<<"Something initialized. j="<<j<<endl;}
};

class Base
{
  private:
    Base(const Base&) {}
  public:
    Base() {}
    virtual Base *clone() { return new Base(*this); }
    virtual void ID() { cout<<"BASE"<<endl; }
};

class Derived : public Base
{
  private:
    int id;
    Something *s;
    Derived(const Derived&) {}
  public:
    Derived():id(10) {cout<<"Called constructor and allocated id"<<endl;s=new Something();}
    ~Derived() {delete s;}
    virtual Base *clone() { return new Derived(*this); }
    virtual void ID() { cout<<"DERIVED id="<<id<<endl; }
    void assignID(int i) {id=i;}
};


int main()
{
        Base* b=new Derived();
        b->ID();
        Base* c=b->clone();
        c->ID();
}//main

跑步时:

Called constructor and allocated id
Something initialized. j=20
DERIVED id=10
DERIVED id=0

我的问题与thisthisthis发布有关。

在第一个链接中,Space_C0wb0y说

  

“因为克隆方法是一种方法   它的实际类,它可以   还创建了一个深层拷贝。它可以访问   它所属的所有成员   来,所以没有问题。“

我不明白深层复制是如何发生的。在上面的程序中,甚至没有发生浅拷贝。 即使Base类是抽象类,我也需要它才能工作。我怎么能在这里做一个深层复制?请帮忙吗?

1 个答案:

答案 0 :(得分:5)

好吧,你的拷贝构造函数什么都不做,所以你的克隆方法没有做任何复制的方法。

见第Derived(const Derived&) {}

编辑:如果您添加代码以通过分配Derived的所有成员进行复制,它将成为浅层副本。如果您还复制(通过制作新实例)您的Something实例,它将成为深层副本。