up vote 32 down vote favorite
13
share [g+] share [fb]

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?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 41 down vote accepted

I've used a sequence of clear and str in the past:

// clear, because eof or other bits may be still set. 
s.clear();
s.str("");

Which has done the thing for both input and output stringstreams. Alternatively, you can manually clear, then seek the appropriate sequence to the begin:

s.clear();
s.seekp(0); // for outputs: seek put ptr to start
s.seekg(0); // for inputs: seek get ptr to start

That will prevent some reallocations done by str by overwriting whatever is in the output buffer currently instead. Results are like this:

std::ostringstream s;
s << "hello";
s.seekp(0);
s << "b";
assert(s.str() == "bello");

If you want to use the string for c-functions, you can use std::ends, putting a terminating null like this:

std::ostringstream s;
s << "hello";
s.seekp(0);
s << "b" << std::ends;
assert(s.str().size() == 5 && std::strlen(s.str().data()) == 1);

std::ends is a relict of the deprecated std::strstream, which was able to write directly to a char array you allocated on the stack. You had to insert a terminating null manually. However, std::ends is not deprecated, i think because it's still useful as in the above cases.

link|improve this answer
I am trying to use s.str() with an ostream. The size is messing it up (i can see the first character is null but it prints much more). Is there a good way to fix the str length? i am using s.str().c_str(); ATM and it works nicely – acidzombie24 Jun 6 '11 at 16:09
Actually even this isnt correct. I just did s.str(""); instead. auto str = s.str(); auto cstr = str.c_str(); file << cstr; s.clear(); s.seekp(0); s << ends; – acidzombie24 Jun 6 '11 at 16:20
feedback

You don't. Use two differently named streams for clarity and let the optimizing compiler figure out that it can reuse the old one.

link|improve this answer
2  
... and of course hope that it does, figure it out that is. – Sebastian Ganslandt Mar 8 '09 at 21:12
feedback

Seems to be that the ostr.str("") call does the trick.

link|improve this answer
Worth pointing out that this won't re-use the underlying buffer from the ostringstream - it just assigns a new buffer. So while you're reusing the ostringstream object, you're still allocating two buffers. I don't think ostringstream is designed for reuse in the manner you intend. – razlebe Mar 8 '09 at 21:09
2  
It also doesn't clear out the state, which is what .clear() does. I agree, it really isn't meant to be used like this. Just create a new one to be sure. Only if you profile will you find out if it makes any difference. – Brian Neal Mar 9 '09 at 2:30
1  
sgreeve, Brian, that's right. Note, however, how the litb's method above requires of the usage of std::ends. It reuses the buffer, but makes you code differently as usual with stringstreams (normally you don't use std::ends). – Diego Sevilla Mar 9 '09 at 8:21
feedback

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.

struct Foo {
std::ostringstream d_str;
Foo() { 
  d_str << std::ends;   // Add this
}
void StrFunc(const char *);
template<class T>
inline void StrIt(const T &value) {
  d_str.clear();
  d_str.seekp(0);  // Or else you'll get an error with this seek
  d_str << value << std::ends;
  StrFunc(d_str.str().c_str());  // And your string will be empty
}
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.