16,550
社区成员
发帖
与我相关
我的任务
分享
struct SimpleStruct
{
int nID;
char *pszBuffer;
SimpleStruct(int nSize)
{
nID = 0;
pszBuffer = new char[nSize];
}
};
char szMsg[200] = _T("024abc");
SimpleStruct *pData = new SimpleStruct(30);
memcpy(pData->pszBuffer,szMsg,30);