CString可以通过GetBuffer()函数获得其内部的字符数组地址。
示例如下:
CString s = TEXT("abcd"); //创建一个CString字符串
TCHAR array[100]; //创建一个数组
LPTSTR pBuffer = s.GetBuffer(); //获取字符串内部的字符数组的地址
memcpy(array, pBuffer, s.GetLength() * sizeof(TCHAR)); //向数组复制数据
其实string类型他本身就是一个字符串数组的
例如m_accounts[0]就是1m_accounts[2]就是3.......等等.
strcpy(temp,m_accounts);
其他还有很多方法,我准备写一个博客。
CString m_accounts="123456 654321";
char temp[100];
strcpy(temp,m_accounts);
strcpy(temp,m_accounts.GetBuffer(m_accounts.GetLength()));