Chinaunix

标题: std::stringstream输出16进制字符的问题 [打印本页]

作者: vafls_scott    时间: 2009-05-20 16:04
标题: std::stringstream输出16进制字符的问题
如下代码:
#include <string>
#include <sstream>
#include <iostream>
#include <iomanip>
using   namespace   std;

main()
{
   unsigned char x[10] = {0x00, 0x01, 0x02, 0x1f, 0x4c, 0x5d, 0x06, 0x07, 0x08, 0x09};
   std::stringstream  ss;
   for(int i=0;i<10; i++) {
     int tm = x[i];
     ss << std::hex << std::setw(2) <<std::setfill('0') << tm;
     ss << " ";
   }
   string a = ss.str();

   std::cout << "string is : " << a <<std::endl;
 }


能正确以十六进制输出字符串x,输出结果:
string is : 00 01 02 1f 4c 5d 06 07 08 09
但如果在for循环中,不先将unsigned char转成int,就不能正确输出。代码如下:
for(int i=0;i<10; i++) {
&nbsp;&nbsp;ss << std::hex << std::setw(2) <<std::setfill('0')  << x[i];
&nbsp;&nbsp;ss << " ";
}

输出结果为:
string is : 0 0 0 0 0L 0] 0 0  0

这是为什么呢?

[ 本帖最后由 vafls_scott 于 2009-5-20 16:06 编辑 ]
作者: OwnWaterloo    时间: 2009-05-20 16:11
标题: 回复 #1 vafls_scott 的帖子
x是char类型的数组。 直接<< x[ i ]是 按“字符输出”。
作者: vafls_scott    时间: 2009-05-20 17:36
原帖由 OwnWaterloo 于 2009-5-20 16:11 发表
x是char类型的数组。 直接

就是说前面的<< std::hex << std::setw(2) <<std::setfill('0')这些操作,对char类型是无效的咯?
作者: OwnWaterloo    时间: 2009-05-20 17:43
标题: 回复 #3 vafls_scott 的帖子
right~~~
作者: vafls_scott    时间: 2009-05-20 18:00
thanks!




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2