首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

[win32]int与LPCWSTR其间的转换

2013-03-21 
[win32]int与LPCWSTR之间的转换#include stdlib.h#include tchar.hvoid test3(){// LPCWSTR to intLPC

[win32]int与LPCWSTR之间的转换


#include <stdlib.h>#include <tchar.h>void test3(){// LPCWSTR to intLPCWSTR wstr=L"234";std::wstring tempstr(wstr);int val=_wtoi(tempstr.c_str());//int to LPCWSTRint itemp=123;wchar_t str[10];_itow_s(itemp,str,10);//int to LPCWSTRint age=50;wchar_t ch[20];_stprintf_s(ch,L"%d",age);}

热点排行