我无法让一个简单的类构造函数工作。
// In XModule.h
class XModule
{
...
public:
TXMHeader header; // module header
TXMInstrument* instr; // all instruments (256 of them)
TXMSample* smp; // all samples (256 of them, only 255 can be used)
TXMPattern* phead; // all pattern headers (256 of them)
}
Module.cpp
// In XModule.cpp
....
XModule::XModule()
{
// allocated necessary space for all possible patterns, instruments and samples
phead = new TXMPattern[256]; // Line # 1882
instr = new TXMInstrument[256];
smp = new TXMSample[MP_MAXSAMPLES];
memset(&header,0,sizeof(TXMHeader));
if (instr)
memset(instr,0,sizeof(TXMInstrument)*256);
if (smp)
memset(smp,0,sizeof(TXMSample)*MP_MAXSAMPLES);
if (phead)
memset(phead,0,sizeof(TXMPattern)*256);
}
....
Extractor.cpp
#include "Extractor.h"
#include "XModule.h"
#include <iostream>
using namespace std;
int main ()
{
XModule* module = new XModule();
SYSCHAR* fileName = "Greensleeves.xm";
...
return 0;
}
当我使用valgrind运行时,我收到以下错误:
==21606== Invalid write of size 8
==21606== at 0x408BD3: XModule::XModule() (XModule.cpp:1882)
==21606== by 0x4012D8: main (Extractor.cpp:9)
==21606== Address 0x64874f0 is not stack'd, malloc'd or (recently) free'd
行memset(instr,0,sizeof(TXMInstrument)*256);
中的后一行将phead
,instr
和smp
归零。
使用gdb逐步显示在此之前正确设置了phead
,instr
和smp
,但是数组指针的地址位于为其分配的新区域内instr
数组。检查&phead
显示这是真的。
为什么新呼叫instr = new TXMInstrument[256];
会分配用于phead
,instr
和smp
的内存空间,我该怎么做才能解决此问题或进一步诊断问题
答案 0 :(得分:5)
事实证明在类定义中有一堆#IFDEF,所以当我用针对使用项目makefile构建的库编译我的实用程序时,它使用了源头并认为该类具有不同数量的属性,所以它们没有正确地安排在内存中,并且被阵列的分配压碎了。
我通过不使用项目库,将源文件复制到新文件夹并运行g++ *.cpp
来解决它。