description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: strstream Class |
strstream Class |
11/04/2016 |
|
|
63f3be31-9e36-42b1-9715-a474a5997e2a |
Describes an object that controls insertion and extraction of elements and encoded objects using a stream buffer of class strstreambuf.
class strstream : public iostream
The object stores an object of class strstreambuf
.
Note
This class is deprecated. Consider using stringstream or wstringstream instead.
Constructor | Description |
---|---|
strstream | Constructs an object of type strstream . |
Member function | Description |
---|---|
freeze | Causes a stream buffer to be unavailable through stream buffer operations. |
pcount | Returns a count of the number of elements written to the controlled sequence. |
rdbuf | Returns a pointer to the stream's associated strstreambuf object. |
str | Calls freeze, and then returns a pointer to the beginning of the controlled sequence. |
Header: <strstream>
Namespace: std
Causes a stream buffer to be unavailable through stream buffer operations.
void freeze(bool _Freezeit = true);
_Freezeit
A bool
indicating whether you want the stream to be frozen.
The member function calls rdbuf -> freeze(_ Freezeit).
See strstreambuf::freeze for an example that uses freeze
.
Returns a count of the number of elements written to the controlled sequence.
streamsize pcount() const;
The number of elements written to the controlled sequence.
The member function returns rdbuf -> pcount.
See strstreambuf::pcount for a sample of using pcount.
Returns a pointer to the stream's associated strstreambuf object.
strstreambuf *rdbuf() const
A pointer to the stream's associated strstreambuf object.
The member function returns the address of the stored stream buffer of type pointer
to strstreambuf.
See strstreambuf::pcount for a sample that uses rdbuf
.
Calls freeze, and then returns a pointer to the beginning of the controlled sequence.
char *str();
A pointer to the beginning of the controlled sequence.
The member function returns rdbuf -> str.
See strstreambuf::str for a sample that uses str
.
Constructs an object of type strstream
.
strstream();
strstream(char* ptr,
streamsize count,
ios_base::openmode _Mode = ios_base::in | ios_base::out);
count
The size of the buffer.
_Mode
The input and output mode of the buffer. See ios_base::openmode for more information.
ptr
The buffer.
Both constructors initialize the base class by calling streambuf( sb), where sb
is the stored object of class strstreambuf. The first constructor also initializes sb
by calling strstreambuf. The second constructor initializes the base class one of two ways:
-
If
_Mode
& ios_base::app== 0, then ptr must designate the first element of an array ofcount
elements, and the constructor callsstrstreambuf
(ptr
,count
,ptr
). -
Otherwise, ptr must designate the first element of an array of count elements that contains a C string whose first element is designated by ptr, and the constructor calls
strstreambuf
(ptr
,count
,ptr
+strlen
(ptr
) ).
iostream
Thread Safety in the C++ Standard Library
iostream Programming
iostreams Conventions