I need to store a double as a string. I know I can use printf if I wanted to display it, but I just want to store it in a string variable so that I can store it in a map later.
|
|
The boost (tm) way:
The Standard C++ way:
|
|||||||||||||||||
|
|
|||||||
|
|
The Standard C++11 way:
|
|||||
|
|
If you use C++, avoid
Usage:
|
|||
|
|
|
You can also use Boost.LexicalCast:
In both instances, |
|||
|
|
|
Herb Sutter has an excellent article on string formatting. I recommend reading it. I've linked it before on SO. |
|||
|
|
|
You could also use stringstream. |
|||
|
|
|
Heh, I just wrote this (unrelated to this question):
|
|||
|
|
|
The problem with lexical_cast is the inability to define precision. Normally if you are converting a double to a string, it is because you want to print it out. If the precision is too much or too little, it would affect your output. |
|||
|
|
|
For the record: In my own code, I favor snprintf(). With a char array on the local stack, it's not that inefficient. (Well, maybe if you exceeded the array size and looped to do it twice...) (I've also wrapped it via vsnprintf(). But that costs me some type checking. Yelp if you want the code...) |
|||
|
|
|
|
|||||||||
|
|
Take a look at |
|||||||||||||
|