我在指针指向的缓冲区中有一些数据const char*
。数据只是一个 ASCII 字符串。我知道它的大小。我希望能够以与从流中读取数据相同的方式读取它。我正在寻找一种允许我编写如下代码的解决方案:
// for example, data points to a string "42 3.14 blah"
MemoryStreamWrapper in(data, data_size);
int x;
float y;
std::string w;
in >> x >> y >> w;
重要条件:不得以任何方式复制或更改数据(否则我只会使用字符串流。据我所知,如果不复制数据,就不可能从 const char 指针创建字符串流。 )