public member function
<sstream>

std::istringstream::rdbuf

stringbuf* rdbuf() const;
获取流缓冲区
返回指向内部 stringbuf 对象的指针,该对象在构造时与之关联。

但请注意,这不一定与当前关联的流缓冲区(由 ios::rdbuf 返回)相同。

参数



返回值

指向内部 stringbuf 对象的指针。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// istringstream::rdbuf
#include <string>       // std::string
#include <iostream>     // std::cout
#include <sstream>      // std::istringstream, std::stringbuf

int main () {
  std::istringstream iss;
  std::stringbuf *pbuf = iss.rdbuf();

  // using stringbuf directly:
  pbuf->str("Example string");

  int size = pbuf->in_avail();

  while (pbuf->in_avail()>0)
    std::cout << static_cast<char>(pbuf->sbumpc());

  return 0;
}

Example string


数据竞争

访问流对象。
并发访问同一个流对象可能导致数据争用。

异常安全

强保证:如果抛出异常,流缓冲区将不会发生任何更改。

另见