这当然是项目的其中之一,其目标是制作功能齐全的MyString Class。在使用析构函数方法之前,它一直运行良好。但是在main.cpp中,当我尝试使用自己制作的这些方法时,会发生堆损坏。我认为问题出在调用析构函数的顺序上,但我不知道发生在哪里。
尝试检查分配的内存(反向调用顺序) 没有析构方法的处理(有效)
main.cpp
void main() {
MyString a = MyString("HELLOMYNAMEIS");
char ab[10] = "thisiskrw";
MyString c = ab;
a = a + c;
cout << a;
}
MyString.cpp
MyString::~MyString() {
delete[] str_;
}
MyString operator+(const MyString& lhs, const MyString& rhs) {
MyString a(lhs);
MyString b(rhs);
a += b;
cout << a;
return a;
}
MyString& MyString::operator+=(const MyString& str) {
int i = 0;
if (this->capacity() < (this->length_ + str.length_)) {
char* temp = new char[this->length_ + str.length_+1];
memset(temp, '\0', this->length_+str.length_+1);
strcpy(temp, this->str_);
for (int i = 0; i < str.length_; i++) {
temp[(this->length_) + i] = str.str_[i];
}
temp[this->length_ + str.length_] = '\0';
strcpy(this->str_,temp);
this->length_ = this->length_ + str.length_;
delete[] temp;
}
else {
for (int i = 0; i < str.length_; i++) {
this->str_[(this->length_) + i] = str.str_[i];
}
this->length_ = this->length_ + str.length_;
}
return *this;
}
它将在MyString对象中打印字符串。
答案 0 :(得分:1)
您忘记在任何地方写this->str_ = temp;
。您只需尝试将较长的字符串写入较短的空格。
strcpy(this->str_,temp);
this->length_ = this->length_ + str.length_;
delete[] temp;
应该是
delete [] this->str_;
this->str_ = temp;