我在尝试使用从我的 DLL 导出的函数时遇到问题。
我收到一条消息(抱歉,我无法上传图片):
Windows 已在 LibTester.exe 中触发断点。
这可能是由于堆损坏,这表明 LibTester.exe 或其已加载的任何 DLL 中存在错误。
这也可能是由于用户在 LibTester.exe 获得焦点时按 F12。
输出窗口可能有更多诊断信息。
我有一个 Vector 类,具有重载的赋值运算符和一些构造函数:
Vector::Vector() : X(0.0f), Y(0.0f), Z(0.0f) { }
Vector::Vector(const Vector& vector) : X(vector.X), Y(vector.Y), Z(vector.Z) { }
Vector::Vector(float x, float y, float z) : X(x), Y(y), Z(z) { }
.
.
.
Vector& Vector::operator=(const Vector& rhs)
{
this->X = rhs.X;
this->Y = rhs.Y;
this->Z = rhs.Z;
return *this;
}
仅当我尝试将现有向量分配给构造函数生成的新向量时才会出现问题:
Vector v1 = Vector(); //Works
Vector v2 = Vector(1.0f, 1.0f, 1.0f); //Works
v1 = v2; //Works
v1 = Vector(); //Fails
v1 = Vector(1.0f, 1.0f, 1.0f); //Fails
如果这是相关的,Vector结构派生自IPrintable类:
class IPrintable
{
public:
~IPrintable()
{
if (this->m_pStr != NULL)
delete[] this->m_pStr;
}
virtual char* ToString() = 0;
protected:
char* m_pStr;
};
任何人都知道什么可能导致这种行为?