私は次のクラスを持っています:
class estimate
{
public:
estimate();
~estimate();
double *tHanning;
}
estimate::estimate()
{
tHanning = NULL;
tHanning = new double [1000];
for (int m=0; m<1000; m++)
{
tHanning[m]=(0.5-0.5*cos(2.0*PI*(m+1)/(1001)));
}
}
estimate::~estimate()
{
delete [] tHanning;
tHanning = NULL;
}
変数に "new" を割り当てると、C++ メモリ バリデーターがコンストラクターでリソース リークを表示する理由がわかりません。
誰か助けてくれませんか?
編集:上記のクラスを訴える方法:
class HBMain
{
public:
HBMain();
~HBMain();
bool Init();
estimate *objEstimate;
}
HBMain :: HBMain()
{
objEstimate = NULL;
}
HBMain :: ~HBMain()
{
delete objEstimate;
objEstimate = NULL;
}
bool HBMain :: Init()
{
....
objEstimate = new estimate();
....
}