gpt4 book ai didi

c++ - 在哪里/如何删除另一个对象中的对象,在创建它的函数之外

转载 作者:行者123 更新时间:2023-11-28 00:57:00 26 4
gpt4 key购买 nike

为了解决这个问题Bad memory management? Class member (boolean) value greater than 1, in recursion function ,我在Valgrind下运行了整个程序,发现了几个步骤之前发生的内存泄漏问题。在函数 CMFLoader 中发现了 2 个“绝对丢失”的问题。

(这里MyDataset是一个Molecule对象的 vector ,每个Molecule对象包含一个Elements对象)

在CMFLoader::loadFile(vector& MyDataset)中,我原来有

MyDataset.push_back( readMolecule( in_file, word );

其中 CMFLoader::readMolecule 返回一个 Molecule 对象。在 readMolecule 函数中,创建了一个新的 Molecule 对象(但直到 main 的最后才被删除,稍后会详细介绍)

Molecule* CMFLoader::readMolecule( ifstream& in_file, string id)
{
Molecule* my_mol = new Molecule( id );
// statements, somewhere along the readFormula function is called
my_mol->setFormula( readFormula( ss ) );
return my_mol;
}

其中 CMFLoader::readFormula 返回一个 Element 对象,并且有一个 Molecule::setFormula 函数将其保存到 Molecule 对象。在读取公式

Elements* CMFLoader::readFormula( stringstream& ss )
{
Elements* my_formula = new Elements();
...
return my_formula;
}

我遇到了问题 here 中描述的问题,稍后在主程序中。具体问题出现在 HammettCheck::checkHammett 步骤。然后我将上面的 CMFLoader 函数更改为这样的东西。之前遇到的问题似乎已经消失了(但程序后面出现的其他问题无疑与内存泄漏有关):

在 CMFLoader::loadFile 中

Molecule* new_mol = new Molecule(word);
MyDataset.push_back( readMolecule( in_file, word ,new_mol) );

其中 readMolecule 现在接受一个新的参数 Molecule* 并且新的运算符在函数中被删除。同样,在 readFormula 中,我现在有

 Elements* new_formula = new Elements();
my_mol->setFormula( readFormula( ss, new_formula ) );

等等

现在内存泄漏问题当然没有解决!但是,我不能在任何 CMFLoader 函数中放入 delete 运算符,因为这些对象稍后会在主程序中使用。具体来说,Elements* 一直使用到 ConjugationCheck::checkConjugation 步骤,Molecule* 一直使用到程序结束。

主程序是这样的

int main(int argc, char* argv[]){
//initialising an empty array to store our molecules.
vector<Molecule*> MyDataset;

//Read command line inputs.
InputReader* MyInputs = new InputReader();
if( !MyInputs->readInputs(argc, argv) ) {delete MyInputs;return -1;}

//Load CMF file.
CMFLoader* MyLoader = new CMFLoader( MyInputs );
unsigned int min_same_grp = MyLoader->getmin(); //define minimum no of same hammett groups for structure
if( !MyLoader->loadFile( MyDataset ) ) {delete MyLoader;delete MyInputs;return -1;}
delete MyLoader;

cout << MyDataset.size() << " molecules loaded" << endl;

//Remove molecules which are too large.
BigFilter* MyBigFilter = new BigFilter( MyInputs );
if( !MyBigFilter->filterBigLigands( MyDataset ) ) {delete MyBigFilter;delete MyInputs;return -1;}
delete MyBigFilter;

cout << "Molecules left after big ligand filter: " << MyDataset.size() << endl;

//Mark any Hammetts groups found in molecules.
HammettCheck* MyHammettCheck = new HammettCheck(min_same_grp);
if( !MyHammettCheck->loadHammetts() ) {delete MyHammettCheck;delete MyInputs;return -1;}
if( !MyHammettCheck->checkHammett( MyDataset ) ) {delete MyHammettCheck;delete MyInputs;return -1;}
delete MyHammettCheck;

cout << "Molecules containing Hammett Groups: " << MyDataset.size() << endl;

ConjugationCheck* MyConjugationCheck = new ConjugationCheck(min_same_grp);
if( !MyConjugationCheck->checkConjugation( MyDataset ) ) {delete MyConjugationCheck;delete MyInputs;return -1;}
delete MyConjugationCheck;

cout << "Molecules containing conjugated Hammett Groups: " << MyDataset.size() << endl;

DataAdder* MyDataAdder = new DataAdder( MyInputs );
if( !MyDataAdder->addData( MyDataset ) ) {delete MyDataAdder; delete MyInputs;return -1;}
delete MyDataAdder;

//Sorts molecules based on their NLO rating given by NLOCompare.
if (min_same_grp ==1) {sort(MyDataset.begin(), MyDataset.end(), NLOCompare);}
else {sort(MyDataset.begin(), MyDataset.end(), OctuNLOCompare);}

//Saves a new CIF file containing just the predicted NLO molecules.
FileSaver* MyFileSaver = new FileSaver( MyInputs );
if( !MyFileSaver->saveFile( MyDataset ) ) {delete MyFileSaver;delete MyInputs;return -1;}
delete MyFileSaver;

/*
Saves a txt file which can be imported into Excel, showing the
paths to each of the selected Hammett groups in a molecule.
*/
ExcelSaver* MyExcelSaver = new ExcelSaver( MyInputs );
if( !MyExcelSaver->saveFile( MyDataset ) ) {delete MyExcelSaver;delete MyInputs;return -1;}
delete MyExcelSaver;

//Cleans the memory before exiting the program.
for(unsigned int i=0; i < MyDataset.size(); i++){
delete MyDataset[i];
}
delete MyInputs;
return 0;
}

在程序的不同点,如果 Molecule MyDataset[i] 不符合某些条件,则使用

将其删除
MyDataset.pop_back();

所以这会调用 Molecule Destructor,它看起来像这样

Molecule::~Molecule(void)
{
//Deletes all atoms in molecule.
for(unsigned int i=0; i < mol_atoms.size(); i++){
delete mol_atoms[i];
}

//Deletes all bonds in molecule.
for(unsigned int i=0; i < mol_bonds.size(); i++){
delete mol_bonds[i];
}

//Deletes the class of elements contained.
delete mol_formula;
}

我不确定这里出了什么问题。我应该如何解决内存泄漏问题?

我的 Valgrind Memcheck Leak 总结中的“definitely loss”问题

==34809== 400 (96 direct, 304 indirect) bytes in 2 blocks are definitely lost in loss record 24 of 33
==34809== at 0x1000A0679: malloc (vg_replace_malloc.c:266)
==34809== by 0x1000F7F04: operator new(unsigned long) (in /usr/lib/libstdc++.6.0.9.dylib)
==34809== by 0x10000A3B4: CMFLoader::readMolecule(std::basic_ifstream<char, std::char_traits<char> >&, std::string, Molecule*) (in ./OctuDiscovery)
==34809== by 0x10000B9EE: CMFLoader::loadFile(std::vector<Molecule*, std::allocator<Molecule*> >&) (in ./OctuDiscovery)
==34809== by 0x10000282E: main (in ./OctuDiscovery)

==34809== 12,833 (152 direct, 12,681 indirect) bytes in 1 blocks are definitely lost in loss record 33 of 33
==34809== at 0x1000A0679: malloc (vg_replace_malloc.c:266)
==34809== by 0x1000F7F04: operator new(unsigned long) (in /usr/lib/libstdc++.6.0.9.dylib)
==34809== by 0x10000B93B: CMFLoader::loadFile(std::vector<Molecule*, std::allocator<Molecule*> >&) (in ./OctuDiscovery)
==34809== by 0x10000282E: main (in ./OctuDiscovery)

最佳答案

评论多于答案,但评论太长:
在下一个函数中,使用动态内存没有意义:

Molecule* CMFLoader::readMolecule( ifstream& in_file, string id)
{
Molecule* my_mol = new Molecule( id );
// statements, somewhere along the readFormula function is called
my_mol->setFormula( readFormula( ss ) );
return my_mol;
}

您可以将其替换为:

Molecule CMFLoader::readMolecule( ifstream& in_file, string id)
{
Molecule my_mol( id );
// statements, somewhere along the readFormula function is called
my_mol.setFormula( readFormula( ss ) );
return my_mol;
}

这已经解决了 1 种可能的内存泄漏,但可能有一些原因需要/首选动态内存版本,在这种情况下,应该使用已经提到的 unique_ptr。

关于c++ - 在哪里/如何删除另一个对象中的对象,在创建它的函数之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10550362/

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