由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - how to convert an integer to a widestring
相关主题
a careercup questionC++菜问: 怎么这样也可以?
一个读用户输入的小问题为什么foo1可以而foo2不行?
顺便问一个CreateFile问题 (转载)菜鸟求教,一个c++的困惑
定义的struct数组很大时,为什么会出现奇怪的大数字?还是咱们这儿,亲。
Transfer elements in a stack to another preserving orderC++ online Test 2题
int i:1问个c++在不同函数里分配内存和释放内存的弱问题
C++ (direct vs indirect initialization)请教这个程序里用到了什么constructor啊?有几个copy constructor?
请问C++中局部未使用的变量在优化的时候会去掉么?请大侠评点一下我这个C++多重继承的程序。。。写得对不对啊。
相关话题的讨论汇总
话题: widestring话题: convert话题: integer话题: c99话题: c++
进入Programming版参与讨论
1 (共1页)
q**a
发帖数: 75
1
In windows, using c/c++, how to convert an integer to a wide string?
Thanks.
m*****e
发帖数: 4193
2
wsnprintf
but you should probably use another function (tsnprintf?) for better
portability. Check the help.

【在 q**a 的大作中提到】
: In windows, using c/c++, how to convert an integer to a wide string?
: Thanks.

t****t
发帖数: 6806
3
c99 (c89???) defined swprintf in
i believe it is widely available in all kinds of compiler/library before c99
for c++, use wstringstream (wostringstream) for maximum compatibility.

【在 m*****e 的大作中提到】
: wsnprintf
: but you should probably use another function (tsnprintf?) for better
: portability. Check the help.

q**a
发帖数: 75
4
Hi,
thanks.
I found the answer by google.
FYI.
TCHAR str[255];
_stprintf(str, _T("blah blah: %d"), some_int_num);

【在 q**a 的大作中提到】
: In windows, using c/c++, how to convert an integer to a wide string?
: Thanks.

1 (共1页)
进入Programming版参与讨论
相关主题
请大侠评点一下我这个C++多重继承的程序。。。写得对不对啊。Transfer elements in a stack to another preserving order
我这个C++程序有没有什么问题啊?请指点。。。谢谢。。。int i:1
how to export a class in a namespace in DLL?C++ (direct vs indirect initialization)
一个哈希表问题请问C++中局部未使用的变量在优化的时候会去掉么?
a careercup questionC++菜问: 怎么这样也可以?
一个读用户输入的小问题为什么foo1可以而foo2不行?
顺便问一个CreateFile问题 (转载)菜鸟求教,一个c++的困惑
定义的struct数组很大时,为什么会出现奇怪的大数字?还是咱们这儿,亲。
相关话题的讨论汇总
话题: widestring话题: convert话题: integer话题: c99话题: c++