码迷,mamicode.com
首页 > 其他好文 > 详细

Unicode 与多字节编码

时间:2015-09-23 19:08:06      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

int _tmain(int argc, _TCHAR* argv[])
{
 //定义LPWSTR 类型的宽字符串
 LPWSTR szUnicode = L"This is a Unicode  String;";
 //定义LPSTR 类型的窄字符串
 LPSTR szMutliByte = "This is not a Unicode String;";
 //定义 LPTST 类型的自适用字符串
 LPTSTR szString = TEXT("This string is Unicode or not depends on the option.");
 //使用W版本的API 函数,以宽字符串为参数
 MessageBoxW(NULL, szUnicode, L"<字符编码1>", MB_OK);
 //使用A版本的API 函数,以窄字符串为参数
 MessageBoxA(NULL, szMutliByte,"<字符编码2>", MB_OK);
 //根据编译条件自动选择A版本或W版本的API函数,采用相适应的字符串类型为参数
MessageBox(NULL, szString, TEXT("<字符编码3>"), MB_OK);
 return 0;

}

 

Unicode 与多字节编码

标签:

原文地址:http://www.cnblogs.com/luoyefeiwu/p/4832819.html

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