What's the easiest way to convert an uint64 value into a standart C++ string? I checked out the assign methods from the string and could find no one that accepts an uint64 (8 bytes) as argument.
How can I do this?
Thanks Nelson R. Pérez
|
|
|
|||
|
|
|
|||||||||
|
|
The standard way:
If you need an optimized method, then you may use this one:
|
|||
|
|
|
more descriptive than streams I think is
|
|||||||||||||||
|
|
C++: Use a stringstream C: sprintf (buffer,"%I64ld",myint64); |
|||
|
|
I think you want to output it to a stringstream. Start here: |
|||
|