-1

我有一个脚本,它生成两个随机的 32 位浮点数 a 和 b,并将它们除以输出 c。

我想将所有 3 个浮点数以十六进制格式存储为包含 8 个字符的字符串。

我在网上找到了一个聪明的方法:

http://forums.devshed.com/c-programming-42/printing-a-float-as-a-hex-number-567826.html

这是我在 C++ 中实现他们的建议

    fileout << hex << *(int*)&a[i] << endl;
    fileout << hex << *(int*)&b[i] << endl;
    fileout << hex << *(int*)&c[i] << endl;

这适用于大多数情况。但是,在某些情况下,字符串不是 8 个字符宽。有时它们只有一点点长。这是输出的示例:

                            af1fe786
                    ffbbff0b
                    fffbff0b
                    7fbcbf00  <-I like it, but has zeros at the end 
                    77fefe77
                    7ffcbf00
                    fdad974d
                    f2fc7fef
                    4a2fff56
                    67de7744
                    fdf7711b
                    a9662905
                    cd7adf0   <-- problem
                    5f79ffc0
                    0         <--- problem
                    6ebbc784
                    cffffb83
                    de3bcacf
                    e7b3de77
                    ec7f660b
                    3ab44ae4
                    aefdef82
                    fffa9fd6
                    fd1ff7d2
                    62f4      <--why not "62f40000"
                    ebbf0fa6
                    ddd78b8d
                    4d62ebb3
                    ff5bbceb
                    3dfc3f61
                    ff800000 <- zeros at end, but still 8 bytes?
                    df35b371
                    e0ff7bf1
                    3db6115d
                    fbbfbccc
                    ddf69e06
                    5d470843
                    a3bdae71
                    fe3fff66
                    0         <--problem
                    979e5ba1
                    febbe3b9
                    0         <-problem
                    fdf73a80
                    efcf77a7
                    4d9887fd
                    cafdfb07
                    bf7f3f35
                    4afebadd
                    bffdee35
                    efb79f7f
                    fb1028c   <--problem

我想要 8 个字符的表示。至于零的情况,我想将其转换为“00000000”。

但我真的对只有 4、5、6、7 个字符长的那些感到困惑。为什么有些数字最后填充为零而其他数字被截断?如果 int 是 32 位,为什么有时只显示一位?这是由于臭名昭著的“次常”数字吗?

谢谢。

4

3 回答 3

7

如果我正确理解您的要求,如果位数小于 8,您希望在十六进制表示的左侧添加零作为填充字符。

在这种情况下,您可以简单地使用std::setfill()std::setw()操纵器:

#include <iomanip> // Necessary for the setw and setfill

int n = ...;
std::cout << std::hex << std::setw(8) << std::setfill('0') << n;

例如n = 1024,输出将是:

00000400    
于 2013-02-16T10:12:24.817 回答
0

使用std::setw()std::setfill()

fileout << hex << setw(8) << setfill('0') << *(int*)&a[i] << endl;
fileout << hex << setw(8) << setfill('0') << *(int*)&b[i] << endl;
fileout << hex << setw(8) << setfill('0') << *(int*)&c[i] << endl;
于 2013-02-16T10:12:40.603 回答
-2

忘记聪明(不过如此)。签出setwsetfill

于 2013-02-16T10:12:36.667 回答