such as:
CString strText = TEXT("AAA");//strText 必须是Unicode编码。
const char* strOut;
char temp[0x100];
CString str = L"hello wordl";
strText += str;
::wsprintfA(temp, "%ls", (LPCTSTR)strText);//
strOut = temp;
cout << temp << endl;
cout << strOut << endl;