我创建了自己的类,但是当我尝试实例化它时,我碰到了一堵墙。
这是我的代码:
m_interpolation = new Interpolation(m_mesureList, width, height, parent);
delete m_interpolation;
这会产生错误:
0B3E9E40 处的堆块在 0B3E9E68 处修改,请求大小为 20
我不明白我做错了什么......
这里的信息是我的类Interpolation.h和Interpolation.cpp的完整定义,如果有帮助的话。
添加了一个析构函数,但仍然没有解决问题。
Interpolation::~Interpolation()
{
delete m_progress;
m_progress = 0;
}