0

iostream从 a分配astringbuf时,一切正常

std::stringbuf fb;
std::iostream fs(&fb);
char i = 17, j = 42;
fs.write(&i, 1);
fs.write(&j, 1);
char x, y;
fs.read(&x, 1);
fs.read(&y, 1);
std::cout << (int) x << " " << (int) y << std::endl;

17 42

但是,如果我尝试更改我stringbuf的使用 afilebuf它不再起作用

std::filebuf fb;
fb.open("/tmp/buffer.dat", std::ios::in | std::ios::out | std::ios::trunc);
std::iostream fs(&fb);

...

0 0

ghex 告诉我"/tmp/buffer.dat"包含它的假设。

  • filebuf是否可以在不关闭和重新打开文件的情况下从 a 读取和写入?
4

1 回答 1

0

在继续阅读之前,您需要将缓冲区返回到开头:

fs.write(&i, 1);
fs.write(&j, 1);
char x, y;

fs.pubseekpos(0);

fs.read(&x, 1);
fs.read(&y, 1);
于 2015-04-30T16:32:16.227 回答