我們剛剛從VS2010移到VS2013,我發現了一個奇怪的錯誤,我不知道它可能是由於編譯器。VS2013:float和/ EHa +/fp的編譯器bug:strict?
編譯的命令行cl ConsoleApplication1.cpp /EHa /fp:strict /O2
下面的程序,給出: 0xC0000005: Access violation reading location 0xFFFFFFFF.
這僅編譯爲32位(未64位)
#include <iostream>
#include <cmath>
class Vector2D
{
public:
double x;
double y;
Vector2D() : x(0), y(0) {}
Vector2D(double _x, double _y) : x(_x), y(_y) {}
double Width() { return x; }
double Height() { return y; }
};
bool IsEqual(const double & a, const double & b)
{
if (a == b)
return true;
double tolerance = pow(10., -5);
if (::fabs(a) < tolerance/2.)
{
return ::fabs(b) < tolerance/2.;
}
double diff = ::fabs((b - a)/a);
return (diff < tolerance);
}
bool IsEqual(Vector2D & a, Vector2D & b)
{
return IsEqual(a.Width(), b.Width()) && IsEqual(a.Height(), b.Height());
}
std::string GetMsg()
{
return std::string("");
}
int main(int argc, char* argv[])
{
Vector2D v1;
Vector2D v2;
v1 = Vector2D(1, 0);
// This innocent call will cause an access violation
// the access violation occurs *only* if fp:strict and /EHa switches are used
GetMsg(), IsEqual(v1, v2);
return 0;
}
我是否快速指責編譯器時,會發生?
代碼在我眼中顯得很好。我會去編譯器的bug。保持刪除位以最小化代碼,並報告錯誤。你可以從'foo'和'height'中使用字符串,並簡化'IsEqual'。 –
'''''綁定到'std :: string&'是未定義的行爲,刪除那個位並確認錯誤仍然發生 –
@MooingDuck錯誤仍然存在 – BenjaminB