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

string 转 LPCTSTR

时间:2017-04-30 14:10:43      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:new   ems   span   ons   cts   ring   memset   ret   har   

(1)在ANSI字符集下

LPCTSTR想当于LPCSTR,当中L指long。P指Point,C指Const。在程序中能够直接用char*类型的数据对LPCSTR进行赋值,用下述语句:

LPCSTR a1= "abc";

string a2 = "abcde";

a1 = a2.c_str();

(2)在Unicode字符集下

LPCTSTR相当于LPCWSTR。它相当于wchar_t。能够用下述的语句对它进行赋值

LPCWSTR a1;

wstring a2;

a1 = a2.c_str();

(3)把ANSI字符串转换成Unicode字符集,能够用例如以下函数

wstring ANSIToUnicode(string str)
{
	int lengthW = MultiByteToWideChar(CP_ACP,0,str.c_str(),-1,NULL,NULL);
	wchar_t* pUnicode = new wchar_t [lengthW*sizeof(wchar_t)];
	memset(pUnicode,0,lengthW*sizeof(pUnicode));
	MultiByteToWideChar(CP_ACP,0,str.c_str(),-1,pUnicode,lengthW);
	wstring strw = pUnicode;
	delete[] pUnicode;
	return strw;
}
当中。主要用了MultiByteToWideChar()函数。这个函数的详细使用方法。请查相关资料。





string 转 LPCTSTR

标签:new   ems   span   ons   cts   ring   memset   ret   har   

原文地址:http://www.cnblogs.com/jzssuanfa/p/6789170.html

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