Tagged Questions

2
votes
3answers
903 views

How would std::ostringstream convert to bool?

I stumbled across this code. std::ostringstream str; /// (some usage) assert( ! str ); What does ostringstream signify when used in a bool context? Is this possibly an incorrect usage that ...
1
vote
1answer
101 views

C++ Int to String by using ostringstream or stringstream

I've been learning C++ for about a month now and I do have a question about stringstreams, I've been using stringstream to convert Integer to String, but then I realized same operation can be done ...
0
votes
1answer
41 views

ostringstream is an undefined type?

In my C++ project I'm trying to do this: std::ostringstream stream(std::ostringstream::out); But I'm getting an error: error C2027: use of undefined type ...