public member function

std::ostringstream::rdbuf

<sstream>
stringbuf* rdbuf ( ) const;
Get/set the associated stringbuf object
Returns a pointer to the stringbuf object associated with the stream.

Parameters

none

Return Value

A pointer to the stringbuf object associated with the stream.
Notice that for any successfully constructed ostringstream object this pointer is never NULL, even if the buffer string is empty.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// ostringstream::rdbuf
#include <iostream>
#include <sstream>
using namespace std;

int main () {
  stringbuf *pbuf;
  ostringstream oss;

  pbuf=oss.rdbuf();
  pbuf->sputn ("Sample string",13);
  cout << pbuf->str();

  return 0;
}


Basic template member declaration

( basic_ostringstream<charT,traits,Allocator> )
 
basic_stringbuf<charT,traits,Allocator> * rdbuf () const;


See also