I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under Linux, it won't even compile.
Thanks,
tomek
|
8
|
|||||
|
|
|
Using C++ streams:
Taken from http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/ |
||||||
|
|
|
boost::lexical_cast works pretty well.
|
||
|
|
|
|
Try sprintf():
sprintf() is like printf() but outputs to a string. Also, as Parappa mentioned in the comments, you might want to use snprintf() to stop a buffer overflow from occuring (where the number you're converting doesn't fit the size of your string.) It works like this:
|
||||||||||||
|
|
|
Behind the scenes, lexical_cast does this:
If you don't want to "drag in" boost for this, then using the above is a good solution. |
||
|
|
|
|
Archeologyitoa was a non-standard helper function designed to complement the atoi standard function, and probably hiding a sprintf (Most its features can be implemented in terms of sprintf): http://www.cplusplus.com/reference/clibrary/cstdlib/itoa.html The C WayUse sprintf. Or snprintf. Or whatever tool you find. Despite the fact some functions are not in the standard, as rightly mentioned by "onebyone" in one of his comments, most compiler will offer you an alternative (e.g. Visual C++ has its own _snprintf you can typedef to snprintf if you need it). The C++ way.Use the C++ streams (in the current case std::stringstream (or even the deprecated std::strstream, as proposed by Herb Sutter in one of his books, because it's somewhat faster). ConclusionYou're in C++, which means that you can choose the way you want it:
|
||
|
|
|
|
Allocate a string of sufficient length, then use snprintf. |
||
|
|
|
|
Try Boost.Format or FastFormat, both high-quality C++ libraries:
WIth Boost.Format
or FastFormat
Obviously they both do a lot more than a simple conversion of a single integer |
||
|
|
|
|
Note that all of the See here for more. http://stackoverflow.com/questions/225362/convert-a-number-to-a-string-with-specified-length-in-c#226719 |
||
|
|
|
|
On Windows CE derived platforms, there are no |
||
|
|
|
|
Most of the above suggestions technically aren't C++, they're C solutions. Look into the use of std::stringstream. |
||||||||||
|