- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试创建一个链表 vector 作为类成员。 Valgrind 显示没有内存泄漏,但也会在程序结束时产生 Invalid free()/delete/delete[]/realloc() 错误。
我试图通过为链表编写析构函数、复制构造函数和复制赋值运算符来解决这个问题。我相信这些已经正确实现。我还尝试了各种向成员 vector 添加链表的方法(引用、指针、智能指针),但似乎都无法解决问题。
#include "lists.h"
lists::lists() {
}
void lists::newList() {
int size, value;
cout << "Please specify size of this list" << endl;
cin >> size;
shared_ptr<list> new_list(new list);
//list *new_list = new list();
for (int i = 0; i < size; i++) {
cout << "Enter value for node " << i + 1 << endl;
cin >> value;
new_list->pushBack(value);
}
list_storage.push_back(new_list);
//delete new_list;
}
void lists::deleteList() {
}
void lists::display() {
for (int i = 0; i < list_storage.size(); i++) {
list_storage[i]->display();
}
}
#include "list.h"
list::list() {
head = NULL;
}
list::list(const list& list) {
head = NULL;
node *current = head;
while (current != NULL) {
this->pushBack(current->data);
current = current->next;
}
}
list& list::operator=(const list& rhs) {
list temp(rhs);
swap(temp.head, head);
return *this;
}
list::~list() {
if (head != NULL) {
node *current = head;
while (current != NULL) {
node *next = current->next;
delete current;
current = next;
}
delete head;
}
}
这是 valgrind 的输出:
==15967== Invalid free() / delete / delete[] / realloc()
...
==15967== HEAP SUMMARY:
==15967== in use at exit: 0 bytes in 0 blocks
==15967== total heap usage: 9 allocs, 10 frees, 74,856 bytes allocated
==15967==
==15967== All heap blocks were freed -- no leaks are possible
==15967==
==15967== For counts of detected and suppressed errors, rerun with: -v
==15967== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
最佳答案
看看你的析构函数:
list::~list() {
if (head != NULL) {
node *current = head;
while (current != NULL) {
node *next = current->next;
delete current;
current = next;
}
delete head;
}
}
进入循环,删除current
,这是第一次迭代的head
。在循环之后再次删除 head
-> double free。
关于c++ - 我很难修复我认为是双重免费的东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56477059/
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
我有一个带有输入字段的表单,使用javascript,当用户输入超过2个字符时,它会在第一个输入字段下方创建相同的输入字段。其代码是: Optie 1: 1 && treated[this.na
这是我的: char userInput; int position; vector userVector(7); vector someVector(7,1); cin >> userInput;
尝试使用 typescript 和 redux 构建一个简单的 react crud 应用程序并遇到以下问题。我有一个具有指定签名的函数,它将一个人对象作为参数,如此处所示。 export defau
哦,我多么希望 TCP 像 UDP 一样基于数据包! [查看评论] 但是,唉,事实并非如此,所以我正在尝试实现我自己的数据包层。这是到目前为止的事件链(忽略写入数据包) 哦,我的数据包结构非常简单:两
我想在我的页面底部放置一个包含不同数量图片的栏,这些图片(如果比页面宽)可以左右滚动。 页面宽度在变化,我希望 Pane 的宽度为 100%。 我试图通过让中间的 div 溢出并使用 jquery.a
我曾尝试在工作时将我的 Rails 应用程序 bundle 到我的 Mac 上。在家里它运行良好,我之前已经设法自己解决了它,但这次无论我尝试什么似乎都无法解决它。 我在运行 bundle/bundl
所以我有一个旧的网络表单站点,并且正在努力使其更易于维护。把它扔掉并重写它不是一种选择。 IoC 显然是它首先得到的东西之一,但这给我留下了服务定位器模式和糟糕的品味,并且想知道它是否可以做得更好。
我是一名优秀的程序员,十分优秀!