我正在尝试将文件内容复制到缓冲区。
std::ifstream fp(myFile, std::ios::binary)
fp.seekg(0, fp.end); // set cursor at the end
int length = fp.tellg(); // get data size
fp.seekg(0, fp.beg); // go back to buffer begin
char data[1000];
if(length<1000) {
memcpy(data, fp.rdbuf(), length); // This crash
std::stringstream contents;
contents << fp.rdbuf();
memcpy(data, contents->str().c_str(), length); // works fine
}
使用 rdbuf 复制直接崩溃,但在 stringstream 上复制然后在缓冲区中工作正常。
有人有解释吗?