5

我正在编写一个程序,它将 CIL 字节码转换为 C 源代码以供机器使用。由于与十进制之间的转换,我担心浮点常量的不准确性。在做了一些研究之后,我发现 C(但不是 C++)应该能够接受浮点常量的十六进制表示法。

我决定尝试一下,但是无论我尝试什么,MS VC9 都会给我错误。这是我正在尝试的:

// Switches: /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /FD /MDd /Fo"Debug\\" /Fd"Debug\vc90.pdb" /W3 /nologo /c /ZI /TC

#include <tchar.h>
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
    double d = 0x1.0p+1;    // error C2059
    //double d = 0x1p+1;    // doesn't work either
    //double d = 0x1p1;     // doesn't work either
    //double d = 0x1.0p1;   // doesn't work either

    printf( "%f\n", d );

    return 0;
}

我希望这会从 1x2^1 打印出 2,但它却给了我这个编译器错误:

error C2059: syntax error : 'bad suffix on number'

我意识到 C++ 不支持这种语法(或者我已经阅读过),但请注意这是用 C 编译的,/TC所以它应该是直接的 C,我也使用了一个*.c文件名来衡量。

我在这里做错了什么,还是 VC9 不符合标准?

4

2 回答 2

8

你的代码没有问题。浮点十六进制常量在 C99 标准中添加到 C 中,但 MSVC 仅支持较旧的 C90 标准(带有一些扩展,如//单行注释和long long类型)。

于 2013-08-12T05:36:51.887 回答
1

C++17 标准添加了对 C99 十六进制浮点文字的完全支持。Visual C++ 将在 Visual Studio 2017 15.6 版本中提供它们。

于 2017-06-16T00:20:08.197 回答