我在家庭作业程序中遇到内存使用问题,该程序用于存储有关公司及其所有者的信息。СompanyTemplate 类表示此信息。
public:
CompanyTemplate (const string & oName,
const string & oAddr,
const string & cName,
const string & cAddr);
另一个类 CCompanyIndex 用于使用动态指针数组存储多条记录(我不允许使用向量)。这是 CCompanyIndex 构造函数:
CCompanyIndex :: CCompanyIndex (void)
{
allocated = 1000;
current_size = 0;
pole = new CompanyTemplate* [allocated];
for (int i=0; i<allocated; i++)
{
pole[i] = NULL;
}
}
CCompanyIndex 还提供方法 Add(添加记录)、Del(删除记录)、Search(搜索有关所有者公司的信息。我在使用 Add 方法时遇到了问题,尽管所有基本测试都很好,但正如 valgrind 所说,我有内存泄漏, 在 Add 方法中。
bool CCompanyIndex :: Add( const string & oName,
const string & oAddr,
const string & cName,
const string & cAddr )
{
int pos = findPos(oName, oAddr);
if(pos != -1)
{
return false;
}
if ((current_size)>=allocated)
{
CompanyTemplate ** temp;
allocated = allocated*2+1;
temp = new CompanyTemplate* [allocated];
for (int i=0; i<current_size; i++)
{
temp[i]=pole[i];
}
pole = temp;
for (int i=0; i<current_size; i++ )
{
if ((pole[i])->Compare(oName,oAddr)<0)
{
current_size++;
for (int k=current_size-1; k>=i; k--)
{
pole[i] = new Comp pole[k+1]=pole[k];
}anyTemplate(oName, oAddr, cName,cAddr);
return true;
}
}
pole[current_size] = new CompanyTemplate(oName, oAddr, cName,cAddr);
current_size++;
return true;
}
数组元素重新分配按预期工作,更有可能我在析构函数中有错误,但仍然找不到。这里是:
CCompanyIndex :: ~CCompanyIndex (void)
{
for (int i=0; i<allocated; i++)
{
delete pole[i];
}
delete [] pole;
pole = NULL;
}
谢谢