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";
    wstring wStr = wstring(strA.begin(), strA.end());
    wcout << "wStr=" << wStr << endl;

3、wstring 转 string

    wstring wStr = L"world";
    string  strA = string(wStr.begin(), wStr.end());
    cout << "strA=" << strA << endl;

4、string 转 CString

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

5、wstring 转 CString

wstring  strW = "hello";
CString sz(strW.c_str());

6、CString 转 string

//1) 方法一
CString sz = "hello";
string strA(CW2A(sz.GetString()));

//2) 方法二
CString szTwo = "hello";
string strB(CT2A(szTwo.GetString()));

//3) 方法三
CString szThr = "hello";
CStringA szA = szThr; //通过CStringA进行桥接
string strC = szA.GetString();

7、CString 转 wstring

//1) 方法一
CString sz = "hello";
Wstring strA(CA2W(sz.GetString()));

//2) 方法二
CString szTwo = "hello";
Wstring strB(CT2W(szTwo.GetString()));

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

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

stringchar *char[] 相互转换转换

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

C++ Socket学习记录 -3

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

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