MFC CString转换为字符数组
生活随笔
收集整理的這篇文章主要介紹了
MFC CString转换为字符数组
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
VC6單文檔工程;
void CZfszView::OnDraw(CDC* pDC) {CZfszDoc* pDoc = GetDocument();ASSERT_VALID(pDoc);// TODO: add draw code for native data here//char sendBuf[256];//CString sendStr = "xxx"; //sprintf_s(sendBuf, sizeof(sendStr), (const char*)&sendStr);//數據到sendBuf//sprintf(sendBuf, sizeof(sendStr), (const char*)&sendStr);//數據到sendBuf//char ch[20];//CString str="abcd";//strcpy(ch,CW2A(str));CString str="hello!"; pDC->TextOut(50,50,str);char ch[6]; memcpy(ch,str,str.GetLength()); pDC->TextOut(50,80,ch);}前面注釋了的2段來自網上;均會出錯;使用memcpy可以實現;
?
總結
以上是生活随笔為你收集整理的MFC CString转换为字符数组的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: VC++实现汉明码
- 下一篇: C语言位运算实现加法