CString转Char* (多字节字符集与Unicode字符集)

一、使用多字节字符集

1.CString转char*

(1)传给未分配内存的const char* (LPCTSTR)指针. 

CString cstr="ABC";
const char* ch = (LPCTSTR)cstr;
//ch指向的地址和cstr相同。但由于使用const保证ch不会修改,所以安全.

(2)传给未分配内存的指针.


CString cstr = "ABC";
char *ch = cstr.GetBuffer(cstr1.GetLength() + 1);
cstr.ReleaseBuffer();
//修改ch指向的值等于修改cstr里面的值.
//PS:用完ch后,不用delete ch,因为这样会破坏cstr内部空间,容易造成程序崩溃.


(3)把CString 值赋给已分配内存的char *。

CString cstr = "ABC";
int strLength = cstr.GetLength() + 1;
char *pValue = new char[strLength];
strncpy(pValue, cstr, strLength);


(4)把CString 值赋给已分配内存char[]数组.

CString cstr= "ABC";
strncpy(chArray, cstr, strLength1);
int strLength1 = cstr1.GetLength() + 1;
char chArray[100];
memset(chArray,0, sizeof(bool) * 100); //将数组的垃圾内容清空.


2.char*转CString


(1)char *p = "abc";
CString str(p);
 
(2)CString str;
char * p="abc";
str.Format("%s",p);
 
(3)CString str;
char * p="abc";
p=str;


二、使用Unicode字符集

1.CString转char*


(1)CString str =_T("123");  
int len =WideCharToMultiByte(CP_ACP,0,str,str.GetLength(),NULL,0,NULL,NULL);  
char *p =new char[len+1];  
WideCharToMultiByte(CP_ACP,0,str,str.GetLength(),p,len,NULL,NULL );  
p[len] = '\0';  
delete []p; 
 
(2)用T2A、W2A函数(还可以实现wchar_t* char*转换)
CString p= L"123";
USES_CONVERSION;
char* s = T2A(p);
wchar_t* q=A2T(s);
MessageBoxW(q);
//char* w = W2A(p);

2.char*转CString
同多字节字符集。
————————————————
版权声明:本文为CSDN博主「BCDnotCBD」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/BCD_not_CBD/article/details/48085309

你可能感兴趣的:(C++编程)