C++里stringchar*CString之间的转换

Posted sanqima

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++里stringchar*CString之间的转换相关的知识,希望对你有一定的参考价值。

1、string 转 char*

 string strA = "hello";
 char*   pCh = strA.c_str();

2、string 转 wstring

string  strA  = "hello" ;
wstrign wStr = wstring(strA.begin(), strA.end());

3、string 转 CString

string  strA = "hello";
CString sz(strA.c_str());

4、CString 转 string

//1) Unicode 编码
CString sz = "hello";
string strA(CW2A(sz.GetString()));

以上是关于C++里stringchar*CString之间的转换的主要内容,如果未能解决你的问题,请参考以下文章

C++数值类型与stringCString之间的转换

stringchar *char[] 相互转换转换

C++中的CString对象最多能存多少个字符?

C++ Socket学习记录 -3

VS2008,C++程序,Unicode模式下读取txt内容到CString出现的问题

在c++的控制台程序中想用mfc的类如Cstring怎么办啊