0

我很困惑为什么我的代码在运行 valgrind 内存检查时会出错:

valgrind --tool=memcheck --leak-check=yes ./output

该代码在编译和运行时完美运行。但是当运行 valgrind 工具时,它最终会给出这个消息。

错误摘要:来自 9 个上下文的 170 个错误(抑制:2 个来自 2 个)

如果有人可以帮助我,那就太好了。
谢谢/皮特

#include <iostream>
#include <cstdlib>
#include <list>
#include <stdexcept>
#include <algorithm>

using namespace std;

template <typename T>

class Vector{
public:
    T* p;
    size_t size;
public:
Vector<T>(){
    cout << "The default constructor" << endl;
    this-> size = 10;    // initial size
    this->    p = new T[size];

}
~Vector<T>(){
    cout << "The destructor" << endl;
    delete [] p;
}

void print_values(){
        for (unsigned i = 0; i < this->size; ++i){
            std::cout << *(this->p+i) << " ";}
        std::cout << endl;
}   

};

int main(){
Vector <double> dvect;
//dvect.print_values();   // why gives error?
}
4

2 回答 2

1

您是否在打印矢量元素之前对其进行初始化?对代码的此更改为我修复了 valrgind 错误:

--- foo.cpp.orig    2013-10-01 09:15:30.093127716 -0700
+++ foo.cpp 2013-10-01 09:15:34.293127683 -0700
@@ -16,7 +16,7 @@
 Vector<T>(){
     cout << "The default constructor" << endl;
     this-> size = 10;    // initial size
-    this->    p = new T[size];
+    this->    p = new T[size]();

 }
 ~Vector<T>(){

请注意,当我取消注释您的dvect.print_values()电话时,我只收到了 valgrind 错误。

于 2013-10-01T16:17:17.757 回答
0

这是我的结果

==21382==
==21382== HEAP SUMMARY:
==21382==     in use at exit: 0 bytes in 0 blocks
==21382==   total heap usage: 1 allocs, 1 frees, 80 bytes allocated
==21382==
==21382== All heap blocks were freed -- no leaks are possible
==21382==

我认为您得到的错误摘要可能来自不属于您的代码的标题。

于 2013-10-01T16:17:11.763 回答