CString 、Char*与LPCWSTR类型转换解决方案

17 篇文章 1 订阅

【原文出处】
https://blog.csdn.net/zhouxuguang236/article/details/8761497
https://blog.csdn.net/sl159/article/details/6412171

一、char* 转 LPCWSTR

1、通过MultiByteToWideChar函数转换

MultiByteToWideChar函数是将多字节转换为宽字节的一个API函数,它的原型如下:

int MultiByteToWideChar(  
  UINT CodePage,         // code page  
  DWORD dwFlags,         // character-type options  
  LPCSTR lpMultiByteStr, // string to map  
  int cbMultiByte,       // number of bytes in string  
  LPWSTR lpWideCharStr,  // wide-character buffer  
  int cchWideChar        // size of buffer  
);  

LPCWSTR实际上也是CONST WCHAR *类型

char* szStr = "测试字符串";  
WCHAR wszClassName[256];  
memset(wszClassName,0,sizeof(wszClassName));  
MultiByteToWideChar(CP_ACP,0,szStr,strlen(szStr)+1,wszClassName,  
sizeof(wszClassName)/sizeof(wszClassName[0]));  

2、通过T2W转换宏

char* szStr = "测试字符串";     
CString str = CString(szStr);  
USES_CONVERSION;  
LPCWSTR wszClassName = new WCHAR[str.GetLength()+1];  
wcscpy((LPTSTR)wszClassName,T2W((LPTSTR)str.GetBuffer(NULL)));  
str.ReleaseBuffer(); 

3、通过A2CW转换

char* szStr = "测试字符串";     
CString str = CString(szStr);  
USES_CONVERSION;  
LPCWSTR wszClassName = A2CW(W2A(str));  
str.ReleaseBuffer();  

二、CString转LPCWSTR

1、方法一

CString  strFileName;
LPCWSTR lpcwStr = strFileName.AllocSysString();

2、方法二

CString  str = _T("Test");
USES_CONVERSION;
LPCWSTR lpcwStr = A2CW((LPCSTR)str);

MFC中CString和LPSTR是可以通用,其中A2CW表示(LPCSTR) -> (LPCWSTR),USER_CONVERSION表示用来定义一些中间变量,在使用ATL的转换宏之前必须定义该语句。

三、LPCWSTR转换成CString

 LPCWSTR lpcwStr = L"TestWStr"; 
 CString str(lpcwStr);
  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值