I'd like to clear out and reuse an ostringstream (and the underlying buffer) so that my app doesn't have to do as many allocations. How do I reset the object to its initial state?
|
I've used a sequence of clear and str in the past:
Which has done the thing for both input and output stringstreams. Alternatively, you can manually clear, then seek the appropriate sequence to the begin:
That will prevent some reallocations done by
If you want to use the string for c-functions, you can use
|
|||||
|
|
You don't. Use two differently named streams for clarity and let the optimizing compiler figure out that it can reuse the old one. |
|||||||||
|
|
Seems to be that the |
|||||||||||||
|
|
If you're going to clear the buffer in a way that will cause it to be cleared before it's first use, you'll need to add something to the buffer first w/ MSVC.
|
|||
|
|