CString->TCHAR*的轉化可以用函數GetBuff()
!!!!!!使用前注意!!!!!!!!! 需加入 #define _CRT_SECURE_NO_WARNINGS 在程式開頭(stdafx.h)
CString csbuf; csbuf.Format(L"cstring"); int cnt = csbuf.GetLength(); TCHAR* Msg = NULL; Msg = new TCHAR[cnt+1];//記得+1 _tcscpy(Msg, csbuf); delete[]Msg;//刪除動態創建
TCHAR*->CString的轉化
TCHAR szTchar[18] = L"TCHAR";
CString str;
str.Format(_T("%s"),szTchar);
CString str;
str.Format(_T("%s"),szTchar);
沒有留言:
張貼留言