0

Reg クラスのコピー コンストラクターと代入 operator= を作成する必要があります。しかし、私はこれらの複雑な構造を持っており、それを正しくコピーする方法がわかりません。それで、質問は、クラスRegのコピーコンストラクターを作成するにはどうすればよいですか-浅いコピーですか?もう 1 つの質問は、operator= がどのように見えるかということです。これは Reg のディープ コピーである必要があります。

    struct TMoves
        {
            const char* ddate;
            const char* sstreet;
            const char* ccity;

    public:

           ~TMoves()
          {
           delete [] ccity;
           delete [] ddate;
           delete [] sstreet;
          }

        };

    struct TData
    {
        int stackmult;
        const char* iid;
        const char* nname;
        const char* ssurname;
        int pocet;
        TMoves** moves;
        public:
        TData()
            {
                stackmult=1;
            }
        ~TData()
            {
                delete [] iid;
                delete [] nname;
                delete [] ssurname;

                for(int i=0;i<pocet;i++)
                {
                    delete moves[i];
                }

                delete [] moves;
            }

    };


class Reg
 {
   public:

        Reg ();
        Reg (const Regr&);
        ~Reg();
        Reg& operator= (const Reg &);

        bool Add (const char* id,   const char* name, const char* surname, const char* date, const char* street, const char* city );
        bool Resettle ( const char* id, const char* date, const char* street, const char* city );
   private:
        static const int MAX=1000; //default lenght of pole
        TData **pole;
        int counter; // pole lenght counter - not important now
        int multiplier; // used for realocating pole
 };

Reg::Reg()
{
    counter=0;
    multiplier=1;
    pole=new TData*[multiplier*MAX];

}
Reg::Reg(const Reg& out)
{

//... how?

}
Reg::Reg &operator= (const Reg& copy)
{

//... how?

}

Add メソッドで - ここで正しい場所 (misto) を見つけ、ID を配置する必要があります - 二分探索を使用します

int misto=counter;
pole[misto]=new TData;

char *temp = new char[12];
    strcpy(temp, id);
    pole[misto]->iid = temp;

temp = new char[strlen(name)+1];
    strcpy(temp, name);
    pole[misto]->nname = temp;

temp = new char[strlen(surname)+1];
    strcpy(temp, surname);
    pole[misto]->ssurname = temp;


pole[misto]->moves=new TMoves*[STAT];
pole[misto]->moves[0]=new TMoves;

temp = new char[strlen(city)+1];
    strcpy(temp,city);
    pole[misto]->moves[0]->ccity= temp;

temp = new char[strlen(date)+1];
    strcpy(temp,date);
    pole[misto]->moves[0]->ddate= temp;

temp = new char[strlen(street)+1];
    strcpy(temp,street);
    pole[misto]->moves[0]->sstreet= temp;

メソッド Ressetle で - ID を見つけます - 別の情報 (都市、通り、日付) を追加する場所を見つける必要があり、それに新しい TMoves を作成します。

pole[misto]->moves[misto2]=new TMoves;

char *temp = new char[strlen(city)+1];
strcpy(temp,city);
pole[misto]->moves[misto2]->ccity= temp;

temp = new char[strlen(date)+1];
strcpy(temp,date);
pole[misto]->moves[misto2]->ddate= temp;

temp = new char[strlen(street)+1];
strcpy(temp,street);
pole[misto]->moves[misto2]->sstreet= temp;

このトピックは紛らわしいかもしれませんが、私のコードは非常に長く、コピーに関するこれら 2 つの問題に「のみ」直面しています。お時間をいただき、ご返信いただきありがとうございます。

4

1 に答える 1