有关更多背景,请参见此处
我正在使用 astringstream
来读取二进制数据。到目前为止,我只是在编写一个虚拟程序来适应课程。这是我的程序:
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
using namespace std;
string bytes2hex(char* bytes, int n){
stringstream out;
for (int i = 0;i < n;i++){
out << setfill ('0') << setw(2) << hex << (int) bytes[i] << " ";
}
string st = out.str();
for(short k = 0; k < st.length(); k++)
{
st[k] = toupper(st[k]);
}
return st;
}
int main(){
stringstream ss;
ss << "hello the\0re my\0\0\0 friend";
while (ss.peek() != EOF){
char buf [2];
ss.get(buf, 3);
cout << buf << "\t==>\t" << bytes2hex(buf, 2) << endl;
}
}
输出:
he ==> 68 65
ll ==> 6C 6C
o ==> 6F 20
th ==> 74 68
e ==> 65 00
==> 00 00
我对此有两个问题:
- 为什么当我执行时
ss.get()
,我必须输入 3,而不是 2,才能一次读取流 2 个字符? - 为什么它会在第一个空字符处终止,我该如何防止这种情况发生?