我在处理动态分配的内存时出现问题。
我一直在寻找类似的问题,但不幸的是,没有解决方案对我有帮助。
我班上的代码如下:

我班的声明:

class StructuralElement
{
    private:
    short rows;
    short columns;
    short *se;
    friend class Morph;
public:
    StructuralElement(char *path);
    ~StructuralElement();
    short getAt(short row, short column);
    int getSize();
};


我班的定义:

StructuralElement::StructuralElement(char *path)
{
std::string line;
short rows=0, elements=0;
short it = 0;
std::string token;
try
{
    std::ifstream file(path);                   //counting rows and columns in a file!
    if (file.is_open() == NULL){ CannotOpenException ex; throw ex; }
    if (file.fail()) { CannotOpenException ex; throw ex; }
    while (getline(file,line))
    {
        rows++;
        std::stringstream ss(line);
        while (getline(ss, token, ' '))
        {
            elements++;
        }

    }
    file.close();
    this->rows = rows;
    if (rows!=0)
    this->columns = (elements/rows);
    se = new short[elements];

    std::ifstream file2(path);
    if (!file2.is_open()) throw;
    while (getline(file2, line))
    {
        std::stringstream ss(line);
        while (getline(ss, token, ' '))
        {
            this->se[it++] = (static_cast<int>(token.at(0))-48);
        }
    }
    file2.close();
}
catch (CannotOpenException &ex)
    {
    std::cerr << "Error occured! Unable to load structural element!";
    }
}

StructuralElement::~StructuralElement()
{
    if (se != NULL) delete[] se;
}


当程序已经完成工作并且在控制台中出现文本:“单击任何键......”时,我收到错误消息:

调试断言失败

.......

表达式:_BLOCK_TYPR_IS_VALID(pHeap-> nBlockUse)

当我换线时
    se =新的short [元素];
对此:
    se =新的short [];
然后我得到消息:程序已在断点处触发。

我做错了什么?预先感谢您提供任何提示。

最佳答案

您很有可能要进行两次删除。

您的班级没有复制构造函数或赋值运算符,但是您以非RAII方式管理资源。这很可能是问题的原因。实现一个适当的复制构造函数和赋值运算符,该运算符实际上可以对您的数据成员进行深层复制。

关于c++ - 调试断言失败!错误的内存释放,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27023421/

10-13 06:50