Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried several things already,

std::stringstream m;
m.empty();
m.clear();

both of which don't work.

share|improve this question

5 Answers

up vote 179 down vote accepted

For all the standard library types the member function "empty()" is a query, not a command. i.e. it means "are you empty?" not "please throw away your contents"

The "clear()" member function is inherited from ios and is used to clear the error state of the stream. E.g. if a file stream has the error state set to "eofbit" (end-of-file), then calling "clear()" will set the error state back to "goodbit" (no error).

For clearing the contents of a stringstream, using:

m.str("");

is correct, although using

m.str(std::string());

is technically more efficient, because you avoid invoking the "std::string" constructor that takes "const char*", but any compiler these days should be able to generate the same code in both cases - so I would just go with whatever is more readable.

share|improve this answer
6  
Here is what happens when you forget the "clear()" part. stackoverflow.com/q/2848087/635549 – galath Jun 17 '12 at 19:17
why is it that the m.str() returns the string values but does not clear the stream? – Kshitij Banerjee Jul 5 '12 at 11:22
4  
@KshitijBanerjee I think in C++ m.str() and m.str("") are two different functions. m.str() invokes a function which didn't expect any parameter whereas m.str("") will invoke the function which accepts a const char* parameter. m.str() might have been implemented as a get function which returns the string whereas m.str("") might have been implemented as a set function. – Dinesh P.R. Jul 18 '12 at 5:41
Following link neatly documents both versions of str en.cppreference.com/w/cpp/io/basic_stringstream/str – wardw Sep 17 '12 at 14:34
m.str("");

seems to work.

share|improve this answer

These do not discard the data in the stringstream in gnu c++

    m.str("");
    m.str() = "";
    m.str(std::string());

The following does empty the stringstream for me:

    m.str().clear();
share|improve this answer
3  
I'm not so sure this would work, because of the same reasons bernhardrusch's wouldn't work. The .str() function returns a copy, and clearing the copy wouldn't do anything. – Verdagon Mar 29 at 21:22

This should be the most reliable way regardless of the compiler:

m=std::stringstream();
share|improve this answer
2  
Please use the code block to put code in answers. – Grammar Oct 11 '12 at 16:05

I'm always using
m.str() = "";

share|improve this answer
13  
Since this has a couple down-votes without explanation of why, I'll provide one. According to several references (e.g.: cplusplus.com/reference/iostream/stringstream/str), the void argument version of stringstream is declared: string str ( ) const;. It does not return a reference, so don't count on the above being portable by any means. – Ogre Psalm33 Sep 14 '11 at 13:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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