gpt4 book ai didi

c++ - 复制构造函数和 operator=(多个数组...)

转载 作者:行者123 更新时间:2023-11-28 03:19:13 25 4
gpt4 key购买 nike

我必须为 Reg 类创建一个复制构造函数和赋值运算符 =。但是我有这些复杂的结构,不知道如何正确复制它。所以,问题是,我如何为类 Reg 创建复制构造函数 - 浅拷贝?另一个问题是,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;

这个主题可能令人困惑,但我的代码太长了,我“只”面临这两个复制问题。感谢您的宝贵时间和回复。

最佳答案

不要为复制构造函数和复制赋值运算符赋予不同种类的语义。

默认情况下,两者都应提供独立拷贝。

复制构造函数的最佳实现是依赖成员的复制构造,并且只使用编译器生成的成员。为此,请使用 std::string 而不是 char*,并对其他数组使用 std::vector。就这么简单。


对于您被明确指示不要使用stringvector作业 情况,请定义您自己的此类。

遵守每个类最多管理一个资源的准则,例如动态分配的东西。

关于c++ - 复制构造函数和 operator=(多个数组...),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15957084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com