Click here to Skip to main content
15,890,690 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I have a "printf" style function:

C++
void myclass::write (int, char *, ...)


This function takes the usual printf style params. The conversion I am doing is using the simple vsprintf. After the string is converted, it needs to be stored for later printing (through a std::cout interface). After the strings are converted there is no more processing done on them; they are just printed.

1. Is it better to store the strings in std::string?
2. Is it better to store the strings in std::stringstream?
3. Is there a better storage for this?


Thanks.
Posted

1 solution

Since you only need to store a string, use std::string.
 
Share this answer
 
Comments
RichardS 2-Feb-12 4:08am    
And then just concatenate them (str += new_str)?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900