我试图弄清楚为什么我的 Tag 类的析构函数被调用
map<string, Tag>* TestLoader::loadCompoundTag()
{
map<string, Tag>* compound = new map<string, Tag>();
//Create locally scoped variable
Tag tag;
string tagName;
do
{
loadTag(tag, tagName);
//Copies variable into map
compound->insert(std::pair<string, Tag>(tagName, tag));
//Tag destructor is called before debugger breaks on this line
} while (tag.type != TAG_End);
return compound;
}
void TestLoader::loadTag( Tag& tag, string& name )
{
tag.i = 0;
name = string("Test");
}
谁能给我任何关于为什么在那里调用析构函数的想法?在循环的范围内没有定义任何变量,一个是在循环外创建的,另一个是在函数内创建的。谢谢!