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?
|
5
|
|||
|
|
|
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
|
|||
|
|
|
|
Seems to be that the |
||||||
|
|
|
You don't. Use two two differently named streams for clarity and let the optimizing compiler figure out that it can reuse the old one. |
||
|
