std::istrstream::~istrstream
virtual ~istrstream(); |
Destroys a std::istrstream
object, which also destroys the member std::strstreambuf
.
Parameters
(none).
Notes
The constructors of std::istrstream
do not create the underlying std::strstreambuf
in dynamically allocated mode, so the memory leaks that are possible with std::ostrstream::~ostrstream
or std::strstream::~strstream
do not apply.
Example
#include <strstream> #include <iostream> int main() { { std::istrstream s("1.234"); double d; s >> d; std::cout << d << '\n'; } // destructor called }
Output:
1.234
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/io/istrstream/~istrstream