当前位置: 首页 > 工具软件 > AttC > 使用案例 >

A2W、W2A、A2T、T2A的使用方法

艾飞宇
2023-12-01

头文件包含

#include <atlbase.h>


(1)A2W的用法:

[cpp]  view plain  copy
  1. USES_CONVERSION;  
  2. CString tmpStr;  
  3. char*LineChar="fdsfdsa";  
  4. const WCHAR * cLineChar = A2W(LineChar);  
  5. tmpStr=cLineChar;  
  6. //获取字符个数
  7. wcslen(cLineChar );

 (2)W2A的用法:


[cpp]  view plain  copy
  1. USES_CONVERSION;  
  2. CString tmpStr;  
  3. WCH LineChar="fdsfdsa";  
  4. const char* cLineChar = A2W(LineChar);  

2、A2T和T2A


 (1)A2T的用法:


[cpp]  view plain  copy
  1. USES_CONVERSION;  
  2. char * pChar="char to cstring";  
  3. CString cTemp=A2T(pChar);  

(2)T2A的用法:

[cpp]  view plain  copy
  1. USES_CONVERSION;  
  2. CString cTemp =_T("char to cstring");  
  3. char * pChar=A2T(pChar);  
 类似资料: