44问答网
所有问题
c++中copychars是什么意思
如题所述
举报该问题
其他回答
第1个回答 2016-10-09
copychars是字符拷贝的意思。。
使用方法:
CSimpleString str(_T("xxxxxxxxxxxxxxxxxxx"), 20, pMgr);
TCHAR* pszSrc = _T("Hello world!");
_tprintf_s(_T("%s\n"), str);
str.CopyChars(str.GetBuffer(), pszSrc, 12);
_tprintf_s(_T("%s\n"), str);
本回答被网友采纳
相似回答
大家正在搜
相关问题
C++中~是什么意思
C++中 integer 是什么意思
C++中float r是什么意思
C++中,Point& p是什么意思?
C++中if(! outfile5)是什么意思
C#中numbers.Sort();是什么意思
C++中的类外是什么意思
::在C++中是什么意思