2

基本上我试图将一些源解压缩到数据指针指向的动态分配内存。我有以下代码,我可以看到copy()正在工作,但数据指向的内存是全部0s。有谁知道为什么?

void *data = new float[1000000]();
std::ostringstream dest;
dest.rdbuf()->pubsetbuf((char *)data,1000000*4);
boost::iostreams::array_source source( some source );
boost::iostreams::filtering_istreambuf in;
boost::iostreams::filtering_ostreambuf out;
in.push( ios::gzip_decompressor() );
in.push( source );
out.push( dest );
boost::iostreams::copy( in, out );

注意这里的 data 必须是一个 void 指针,我必须使用 new 运算符,因为数据大小会根据另一个指标而变化。

编辑:我在这里找到了答案:设置标准流使用的内部缓冲区(pubsetbuf)

4

0 回答 0