我试图解决我的程序中的一些问题,看起来我的复制构造函数或析构函数有问题。我遇到了内存异常。
任何帮助将不胜感激谢谢
ArrayStorage::ArrayStorage(const ArrayStorage &a):readArray(a.readArray),arraysize(a.arraysize)
{
readArray = new string[arraysize]; //create the array
memcpy (readArray,a.readArray,sizeof(string)*arraysize);//Copy the values of bytes from the location pointed at by the souce and destination.
}
ArrayStorage::~ArrayStorage(void)
{
delete[](readArray);//deconstuctor to delete the array.
}
这是否是复制 memcpy 以外的数组的更好方法:
for (int i = 0 ; i < arraysize ; i ++)
{
readArray[i] = a.readArray[i];
}