私信不是有回你吗?改一下应该就可以了。
int *pBuf;
pBuf = new int[UsedRows+1];
int j=0;
for (int k=1;k {
CString strSingel;
strSingel = AstrALLstr[k-1];
int nBuf;;
nBuf=atoi(strSingel);
memcpy(pBuf+j,&nBuf,sizeof(&nBuf));
j++;
}
//下面就可以对动态数组的值进行你想要的计算了,例如:
int nCal;
nCal = pBuf[300]+pBuf[400];
delete []pBuf;
pBuf =NULL;