I was wondering 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 try to build my program under Linux, I get a compilation error.
|
|
In C++11 you can use
If you're working with prior to C++11, you could use 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:
|
|||||||||||||||
|
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:
|
|||||||||||||||||
|
|
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. |
|||
|
|
|
ะก++11 finally resolves this providing std::to_string. Also boost::lexical_cast is handy tool for older compilers. |
|||
|
|
|
I use these templates
|
|||
|
|
|
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 |
|||
|
|
|
You can actually convert anything to a string with one cleverly written template function. This code example uses a loop to create subdirectories in a Win-32 system. The string concatenation operator, operator+, is used to concatenate a root with a suffix to generate directory names. The suffix is created by converting the loop control variable, i, to a C++ string, using the template function, and concatenating that with another string.
|
|||
|
|
|
Here is a C-version of itoa, with some conditions:
|
|||||||
|
|
We can define our own
Don't forget to |
||||
|
|
|
Most of the above suggestions technically aren't C++, they're C solutions. Look into the use of std::stringstream. |
|||||||||||||
|
|
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 |
|||
|
|