在销毁char时删除[]的断点

时间:2015-03-02 13:31:40

标签: c++ memory breakpoints operator-keyword

我正在上课,我不能使用字符串类。我需要使用char *作为数组并使用它们进行算术运算。

我在main中执行的代码如下:我创建了2个myString对象,然后添加它们。然后这是正确完成的。两个字符串都连接在一起。但是,delete[] str处有一个断点。你能告诉我到底哪里做错了吗?我想了解会发生什么。

myString& myString :: operator+ (const myString& s)
{


    myString tmp;       //myString temporal
    strcpy_s(tmp.str, strlen(str)+1,str); //STR is copied to tmp.str

    Alloc(strlen(s.str)+size+1);        //Then memory is allocated for both    values



    strcpy_s(str, strlen(tmp.str)+1, tmp.str); //WE COPY TMP.STR INTO STR   NOW WITH ENOUGH SIZE FOR THE NEXT...

    strcat_s(str, strlen(s.str) + size+1, s.str);   //..ARGUMENT WE CONCATENATE 2 MYSTRING.STR

    return (*this);


}

这是myString类

class myString
{
public:
//Propietats
int size;
char* str;


//CONSTRUCTORS
myString();


myString(const myString&);


//myString(myString&);


myString(const char*, ...);


//Utilities
int Len(char*);
const void Clear();
const void Alloc(const int);


//Operators
bool operator== (const myString&) const;



bool operator== (const char* s) const;



const myString& operator= (myString&);



const myString& operator= (const char* s);



bool operator!= (const myString&) const;


bool operator!= (const char* s) const;


myString& operator+ (const myString&);


myString& operator+ (const char*);





//Metodes

    ~myString()
    {
        delete[] str; // **ERROR** THERE'S A BREAKPOINT HERE
    }
};

#endif

我的错误是delete [] str中有一个断点;而且我不知道该怎么做。这意味着有溢出吗?我该如何解决? 我对指针算术很陌生,所以不要苛刻。

2 个答案:

答案 0 :(得分:1)

myString& myString :: operator+ (const myString& s)
{
    myString tmp;       //myString temporal
    tmp.Alloc(strlen(str)+1);  // Add this line
    strcpy_s(tmp.str, strlen(str)+1,str); //STR is copied to tmp.str
    ...

您没有在tmp字符串中分配空间。分配后,它应该可以正常工作。

答案 1 :(得分:0)

你可能正在破坏堆。

myString tmp; 

这条指令后的tmp.str是什么? tmp.str是一个NULL指针吗?指向具有默认大小的缓冲区的指针?

strcpy_s(tmp.str, strlen(str)+1,str);

你确定tmp.str有strlen(str)+1 char的空间吗? 您可能应该在此说明之前致电tmp.Alloc(strlen(str)+1)