我怎么用cout / c ++写这个?

时间:2012-08-01 18:43:04

标签: c++ string hex cout

如何用cout编写以下功能?我的主要目的是在知道如何将其与cout一起使用后,实际将所有值打印到文件中。 std :: hex不起作用!

void print_hex(unsigned char *bs, unsigned int n)
{
    int i;
    for (i = 0; i < n; i++)
    {
        printf("%02x", bs[i]);
        //Below does not work
        //std::cout << std::hex << bs[i];
    }

}

编辑:

cout打印出如下值:r9 {èZ[¶ôÃ

1 个答案:

答案 0 :(得分:7)

我认为向int添加一个强制转换可以达到你想要的效果:

#include <iostream>
#include <iomanip>

void print_hex(unsigned char *bs, unsigned int n)
{
    int i;
    for (i = 0; i < n; i++)
    {
        std::cout << std::hex << static_cast<int>(bs[i]);
    }

}

int main() {
  unsigned char bytes[] = {0,1,2,3,4,5};
  print_hex(bytes, sizeof bytes);
}

这需要强制它作为数字打印,而不是你所看到的字符。