这是我的班级:
using namespace std;
Class Book {
public:
Book();
Book(vector<string>*, string, int);
Book(const Book&);
~Book();
Book& operator=(const Book&);
void update(vector<string>*);
void update(string);
void update(int);
int getYear() const{
return year;
};
string getTitle() const{
return title;
};
bool operator==(const Book&);
bool operator!=(const Book&);
friend std::ostream& operator<<(std::ostream&, const Book&);
void getAuthors();
private:
vector<string>* authors;
string title;
int year;
};
#endif /* BOOK_H */
以下是它的来源:
#include "Book.h"
using namespace std;
Book::Book():year(0), title(NULL), authors(NULL){}
Book::Book(vector<string>* bookauthors,string booktitle, int bookyear ){
authors = bookauthors;
title = booktitle;
year = bookyear;
}
Book::Book(const Book& aBook){
authors = aBook.authors;
title = aBook.title;
year = aBook.year;
}
Book::~Book(){
delete authors;
delete &title;
delete &year;
}
bool Book::operator==(const Book &aBook){
if(getYear() == aBook.getYear() && getTitle() == aBook.getTitle())
return true;
else return false;
}
bool Book::operator != (const Book &aBook){
if(getYear() != aBook.getYear() && getTitle() != aBook.getTitle())
return true;
else return false;
}
Book& Book::operator =(const Book& rhs){
if(this != &rhs){
authors = rhs.authors;
title = rhs.title;
year = rhs.year;
}
return *this;
}
void Book::update(int newyear){
year = newyear;
}
void Book::update(string newtitle){
title = newtitle;
}
void Book::update(vector<string>* newauthors){
authors = newauthors;
}
std::ostream& operator <<(std::ostream& os, const Book& b){
os<<b.getTitle()<<", "<<b.getYear();
return os;
}
以下是运行它的主文件:
#include "Book.h"
#include <iostream>
#include <limits.h>
//This is the test funcion posted on the class website
using namespace std;
int main(){
//testing constructor
vector<string> authors;
authors.push_back("Ritchie");
authors.push_back("Kernighan");
Book a(&authors, "C", 1990);
authors.push_back("Whatever");
cout << "Book a is: " << a << endl;
cout << "Expected: (C, 1990, Ritchie & Kernighan)" << endl;
//testing copy constructor
Book b(a);
a.update(&authors);
cout << "Book b is: " << b << endl;
cout << "Expected: (C, 1990, Ritchie & Kernighan)" << endl;
//testing constructor
vector<string> authors2;
authors2.push_back("Crockford");
Book c(&authors2, "JavaScript", 2008);
cout << "Book c is: " << c << endl;
cout << "Expected: (JavaScipt, 2008, Crockford)" << endl;
//testing assignment operator
authors2.push_back("whatever");
a=c;
cout << "Book a is changed to: " << a << endl;
cout << "Expected: (JavaScipt, 2008, Crockford)" << endl;
for(int i=0; i < 200000000; i++)
b=c;
cout << "Book b is changed to: " << b << endl;
cout << "Expected: (JavaScipt, 2008, Crockford)" << endl;
}
我跑的时候一直这样:
bookclass(58316)malloc: *对象0x7fff522d78b0的错误:未释放指针被释放* 在malloc_error_break中设置断点以进行调试
我是C ++的新手,所以我不确定如何分配内存。我尝试使用malloc
但它没有用。
答案 0 :(得分:6)
成员位于对象内部,即,它们的内存分配有Book
对象,并且显式地既不能也不需要delete
内存。基本上,您需要使用new
将显式分配与delete
调用匹配,但您永远不需要发布未明确分配的内容。
也就是说,当您尝试delete title
或delete year
时,会收到错误消息。根据{{1}}的来源,尝试delete authors
时也可能会发生这种情况。通常,您不希望未分配authors
个对象。您的delete
课程可能不合理地拥有Book
向量的所有权。
答案 1 :(得分:2)
这可能是学习使用Valgrind的好时机,它将为您提供更丰富的调试工具来解决此类错误。
在你的析构函数中,你通过指针摧毁了标题和年份。你实际上并不需要这样做,因为它们是静态分配的(即你没有使用new创建它们),所以它抱怨你试图删除你没有动态创建的东西。
此外,您要删除std::vector
,这可以引用另一个类中包含的std::vector
。由于您可能有两个包含相同引用的类,因此您需要找到一种更智能的方法来删除它,这样就不会调用双重释放。