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 读取和写入?