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
istringstream object this pointer is never NULL, even if the buffer string is empty.
Example
// stringstream::rdbuf
#include <iostream>
#include <sstream>
using namespace std;
int main () {
stringbuf *pbuf;
stringstream ss;
pbuf=ss.rdbuf();
pbuf->sputn ("Sample string",13);
cout << pbuf->str();
return 0;
}
|
Basic template member declaration
( basic_stringstream<charT,traits,Allocator> )
basic_stringbuf<charT,traits,Allocator> * rdbuf () const;
|
See also
ios::rdbuf | Get/set the associated stream buffer (public member function) |