0

我找到了一个调整数组大小的函数,但无法理解它是如何工作的(或者它是否正常工作)。为了测试,我将“temp”数组设置为一个新值,并且“startCounter”确实被分配给该值,但是 startCounter 的内存位置没有改变。这是我的代码:

int * startCounter;


void resizeArray(int *&arraySent,int origSize,int newSize) {
    output << "&arraySent " << &arraySent << endl;
    output << "arraySent[0] " << arraySent[0] << endl;
    int* temp = new int[newSize];
    output << "&temp " << &temp << endl;
    for (int i=0; i<origSize; i++) {
        temp[i] = arraySent[i];
    }
    temp[0]=744;
    delete [] arraySent;
    arraySent = temp;
    output << "&arraySent " << &arraySent << endl;
}

//....

startCounter = new int [3];
startCounter[0]=345;
output << &startCounter << endl;
resizeArray(startCounter,3,10);
output << "startCounter[0]" << startCounter[0] << endl;
output << "&startCounter" << &startCounter << endl;

这是我从中得到的输出:

    &startCounter 0x60fab8
    &arraySent 0x60fab8
    arraySent[0] 345
    &temp 0x82cfe54
    &arraySent 0x60fab8
    startCounter[0] 744
    &startCounter 0x60fab8

我的问题是,为什么 startCounter 的内存位置在删除它并将其分配给新的“temp”数组后不会从 0x60fab8 更改?现在不应该变成0x82cfe54吗?

PS我了解向量等,但主要关心了解这个特定功能的工作原理。

4

2 回答 2

2
void resizeArray(int *&arraySent,int origSize,int newSize) {
    output << "&arraySent " << &arraySent << endl;

输出指针变量的地址,而不是它持有的地址。

只需省略地址运算符即可获得(可能)预期效果

于 2012-10-05T23:59:39.957 回答
1

&startCounter是指针的地址,而不是它指向的地址。它的价值不会改变。只需使用startCounter.

于 2012-10-06T00:00:02.070 回答