我的程序与动态分配(DA)阵列开始。 然后,它会提示用户在尺寸输入。 如果输入的大小是一定的阈值范围内,则创建一个新的DA数组,旧的内容被复制到新的,并且随后被显示的新的数组。
我有从一个动态DA阵列麻烦复制内容到其他动态分配的数组。 通过重新分配过程的每个步骤我有“打印测试”即显示每个处理后的数组。 我测试的初始化,也复制。
请参阅下面的代码。 具体来说,如果我输入27,28,29或70,我得到了一堆看起来像内存地址奇异数的....我想不出我做错了什么。
我不能用向量。
编辑:OMG非常感谢你的指点我的错误了......令人困惑的废话了我。 再次感谢大家!
#include <iostream>
using namespace std;
int main () {
int maxSize = 25;
int active_size = 0;
int *uaptr;
uaptr = new int [maxSize];
for (int i=0; i<maxSize; i++)
*(uaptr + i) = 1;
cout << "\nWhat size you would like the array to be?: ";
cin >> active_size;
cin.clear();
cin.ignore (1000, 10);
if (active_size > (0.8 * maxSize)) {
maxSize *= 4;
int *tempPtr;
tempPtr = new int [maxSize];
for (int i=0; i<maxSize; i++)
*(tempPtr + i) = 0;
cout << "Testing initialization..." << endl;
for (int i=0; i<maxSize; i++) { //TEST INITIALIZATION
cout << *(tempPtr + i) << " ";
if ((i+1)%10==0)
cout << endl;
}
for (int i=0; i<active_size; i++) //Copy contents of old array into new,bigger array
*(tempPtr + i) = *(uaptr + i); //*****What is wrong here?!?!
cout << endl;
cout << "Testing the copying..." << endl;
for (int i=0; i<maxSize; i++) { //TEST COPYING -weird results when numbers 27, 28, 29 or 70 are entered
cout << *(tempPtr + i) << " ";
if ((i+1)%10==0)
cout << endl;
}
delete [] uaptr; //release old allocated memory
uaptr = tempPtr; //update the pointer to point to the newly allocated array
cout << endl;
for (int i = 0; i < active_size; i++) {
cout << *(uaptr + i) << " ";
if ((i + 1) % 10 == 0)
cout << endl;
}
}
}