可能的重复:
什么是三法则?
究竟如何std::pair
为其组件调用析构函数?我正在尝试将类的实例添加到 中std::map
,但我收到有关我的类的析构函数的错误。
我已将我的问题/问题缩小到以下非常简单的示例。
下面,my_class
仅在构造时创建一个int
数组,并在销毁时将其删除。不知何故,我收到“双重删除”错误:
//my_class.h
class my_class {
public:
int an_int;
int *array;
//constructors:
my_class()
{
array = new int[2];
}
my_class(int new_int) : an_int(new_int)
{
array = new int[2];
}
//destructor:
~my_class()
{
delete[] array;
}
}; //end of my_class
同时,在 main.cpp 中...
//main.cpp
int main(int argc, char* argv[])
{
std::map<int, my_class> my_map;
my_map.insert( std::make_pair<int, my_class> (1, my_class(71) ) );
return 0;
} // end main
编译正常,但这会产生以下运行时错误:
*** glibc detected *** ./experimental_code: double free or corruption (fasttop):
或者,使用 valgrind:
==15258== Invalid free() / delete / delete[] / realloc()
==15258== at 0x40249D7: operator delete[](void*) (vg_replace_malloc.c:490)
==15258== by 0x8048B99: main (my_class.h:38)
==15258== Address 0x42d6028 is 0 bytes inside a block of size 8 free'd
==15258== at 0x40249D7: operator delete[](void*) (vg_replace_malloc.c:490)
==15258== by 0x8048B91: main (my_class.h:38)
(行号关闭,因为我删掉了评论和东西)
我一定错过了一些关于std::pair
...的东西?
提前感谢大家!