Tagged Questions

31
votes
4answers
7k views

How to reuse an ostringstream?

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?
9
votes
2answers
621 views

What use is there for 'ends' these days?

I came across a subtle bug a couple of days ago where the code looked something like this: ostringstream ss; int anInt( 7 ); ss << anInt << "HABITS"; ss << ends; string theWholeLot ...
6
votes
4answers
621 views

Is there a way to reduce ostringstream malloc/free's?

I am writing an embedded app. In some places, I use std::ostringstream a lot, since it is very convenient for my purposes. However, I just discovered that the performance hit is extreme since adding ...
2
votes
2answers
279 views

how to truncate width of integral types with std::ostringstream?

Say you have something like: std::ostringstream oss; int value(42); oss.fill('0'); oss << std::setw(3) << value; cout << oss.str(); OUTPUT: 042 This output is because std::setw ...
0
votes
1answer
206 views

C++ STL in VS2008: std::ostringstream throws std::bad_alloc after heavy assign/clear usage

I have come across a situation (on Win32) where the std::ostringstream object continues to consume process memory, even when it is ostensibly cleared out after a series of append-type operations. ...