码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 里面的字符类型转换

时间:2018-06-12 18:30:21      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:字符类型   echart   str   wchar_t   style   har   ide   xxxx   color   

char* 转换成 LPCTSTR

char ch[1024] = "xxxx";
int num = MultiByteToWideChar(0,0,ch,-1,NULL,0);
wchar_t *wide = new wchar_t[num];
MultiByteToWideChar(0,0,ch,-1,wide,num);

LPCTSTR 转换成 char *

wchar_t widestr[1024] = L"xxxx";
int num = WideCharToMultiByte(CP_OEMCP,NULL,widestr,-1,NULL,0,NULL,FALSE);
char *pchar = new char[num];
WideCharToMultiByte (CP_OEMCP,NULL,widestr,-1,pchar,num,NULL,FALSE);

c++ 里面的字符类型转换

标签:字符类型   echart   str   wchar_t   style   har   ide   xxxx   color   

原文地址:https://www.cnblogs.com/baldermurphy/p/9174417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!