将字节写入stringstream

时间:2014-11-03 12:20:26

标签: c++

我需要将字节0xEB写入stringstream。我决定以两种方式做到这一点:

char * f = "\XEB"; 
char  j  = 0xEB;

std::stringstream ss;
ss.write(&j,1);
ss.write(f,1);

wcout<<ss.str().c_str();

在控制台输出中,我有两个不同的奇怪字符。为什么他们不一样?

0 个答案:

没有答案