Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
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?
13
votes
6answers
717 views

Is there anyway to write the following as a C++ macro?

my_macro << 1 << "hello world" << blah->getValue() << std::endl; should expand into: std::ostringstream oss; oss << 1 << "hello world" << ...
11
votes
8answers
3k views

What's the difference between istringstream, ostringstream and stringstream? / Why not use stringstream in every case?

I think the title says pretty much everything, hehe. I would like you to tell me when to use std::istringstream, std::ostringstream and std::stringstream and why I shouldn't just use std::stringstream ...
9
votes
2answers
623 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 ...
9
votes
2answers
3k views

How to hook up Boost serialization & iostreams to serialize & gzip an object to string?

I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so: namespace bar = boost::archive; ...
6
votes
4answers
623 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 ...
6
votes
7answers
3k views

C++ format macro / inline ostringstream

I'm trying to write a macro that would allow me to do something like: FORMAT(a << "b" << c << d), and the result would be a string -- the same as creating an ostringstream, inserting ...
5
votes
3answers
159 views

How to write a `<<` operator for boost::tuple?

In the sample code below, it shows that boost::tuple can be created implicitly from the first template argument. Because of that I am not able to write a << operator as it becomes ambiguous. ...
5
votes
3answers
126 views

Why does ostringstream strip NULL?

I have a string whose last part(suffix) needs to be changed several times and I need to generate new strings. I am trying to use ostringstream to do this as I think, using streams will be faster than ...
5
votes
4answers
371 views

What is the purpose of ostringstream's string constructor?

On MSVC 2005, I have the following code. std::ostringstream stream("initial string "); stream << 5; std::cout << stream.str(); What I expect is: initial string 5 What I get is: ...
4
votes
2answers
199 views

Odd behavior with ostringstream

I was trying to think of a clever way to concatenate various things into a single string argument for a function without having to use an ostringstream explicitly. I thought of: #define OSS(...) \ ...
4
votes
2answers
202 views

How to stream float .1 as .1 and not 0.1

std::ostringstream oss; oss << std::setw(10); oss << std::setfill(' '); oss << std::setprecision(3); float value = .1; oss << value I can check if value < 1 and then find ...
2
votes
1answer
168 views

ostringstream operator<< for long?

$ uname -a Darwin Wheelie-Cyberman 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386 $ g++ --version i686-apple-darwin10-g++-4.2.1 (GCC) 4.2.1 ...
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 ...
2
votes
2answers
629 views

Truncate C++ string fields generated by ostringstream, iomanip:setw

In C++ I need string representations of integers with leading zeroes, where the representation has 8 digits and no more than 8 digits, truncating digits on the right side if necessary. I thought I ...
2
votes
4answers
659 views

Deriving streambuf or basic_ostringstream?

I want to derive a stringstream so that I can use the operator<< to construct a message which will then be thrown. The API would look like: error("some text") << " more text " << 42 ...
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
102 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 ...
1
vote
2answers
463 views

CRLF end of line and ostringstream

I am trying to use a ostringstream to build a string which uses the platform standard line endings (so for me it is CRLF since I am developing for Windows). I tried the following code: ...
1
vote
3answers
1k views

How to convert a char array into string based hex-stream (ostringstream)

in C++ (on Linux with gcc) I'd like to put a byte array (vector<unsigned char>) to a ostringstream or a string. I know that I can use sprintf but it doesn't seem to be the best way to use char* ...
1
vote
4answers
1k views

Rounding off floats with ostringstream

I have an issue regarding conversion from float to c++ string using ostringstream. Here is my line: void doSomething(float t) { ostringstream stream; stream << t; cout << ...
1
vote
1answer
141 views

Converting a char array to something that can be appended to a ostringstream

std::ostringstream parmStream; char parmName[1024]; THTTPUrl::Encode(parmName, pParm->Name().c_str(), 1024); //I want to add the value of the paramName to the parmStream worked b4 when ...
1
vote
1answer
677 views

Mac OS X port crashes in pthread_setspecific in glibstdc++ vsnprintf - how to troubleshoot?

I'm testing a Mac OS X port of my multithreaded server. It starts up, but it dies in vsnprintf soon after the first client request is taken by a worker thread. It seems that vsnprintf is trying to ...
1
vote
1answer
309 views

Inline ostringstream macro reloaded

Referring to http://stackoverflow.com/questions/303562/c-format-macro-inline-ostringstream The question there was for a macro that allows inline concatenation of objects to create a string, ...
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 ...
0
votes
3answers
97 views

How to manage 'ostringstream' object in C++?

This is a snippet of code from C++ program. string TwoSeries::getArrays() { ostringstream outIndex; ostringstream outValueA; ostringstream outValueB; string stA; string stB; ...
0
votes
3answers
132 views

Problem with ostringstream and copy constructor [closed]

Possible Duplicates: Why copying stringstream is not allowed? how copy from one stringstream object to another in C++? Compiling class T fails with Visual C++ and GCC producing iostreams ...
0
votes
1answer
211 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. ...
0
votes
2answers
228 views

Dynamic output filenames (C++)

I'm trying to create output files subscripted by a dynamic index ( d = {0,...,NUM_DEMES-1}). Currently, I'm only getting output files for the first value (d=0). #include <sstream> #include ...