我很困惑为什么我的代码在运行 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?
}