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

VC++ 字符串Dword、LPSTR、LPWSTR、LPCSTR、LPCWSTR、LPTSTR、LPCTSTR

时间:2017-07-20 12:50:24      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:vc++   div   ansi   相互   ble   enter   tchar   height   pre   

        类   型     MBCS  UNICODE
TCHAR char   char
WCHAR wchar_t wchar_t
LPSTR char* char*
LPCSTR const char* const char*
LPWSTR wchar_t* wchar_t*
LPCWSTR const wchar_t* const wchar_t*
LPTSTR TCHAR* TCHAR*
LPCTSTR const TCHAR* const TCHAR*
     
     

 

相互转换方法: 
LPWSTR->LPTSTR: W2T(); 
LPTSTR->LPWSTR: T2W(); 
LPCWSTR->LPCSTR: W2CT(); 
LPCSTR->LPCWSTR: T2CW();

ANSI->UNICODE: A2W(); 
UNICODE->ANSI: W2A();

  

VC++ 字符串Dword、LPSTR、LPWSTR、LPCSTR、LPCWSTR、LPTSTR、LPCTSTR

标签:vc++   div   ansi   相互   ble   enter   tchar   height   pre   

原文地址:http://www.cnblogs.com/mypsq/p/7210514.html

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