2

和我的朋友一起,我们用重写的 new 和 new[] 运算符制作了一个程序。我发现当我尝试使用此代码创建字符串数组时:

string* Test1 = new string[10];

函数返回无效指针(通常它的值向前移动 8 位,我正在将程序编译到 x64 平台)。我们的 new[] 函数如下所示:

void* operator new[] (size_t e)
{
    void* Test2 = operator new(e); 
    return Test2;
}

在返回前使用调试器运行程序时,指针Test2的值为 0x0000000009dfaa90,但值Test1变为 0x0000000009dfaa98。
这种情况只发生在字符串类型上。我尝试对“int[10]”、“string* [10]”和我的一个类的对象做同样的事情,但问题只在处理字符串时出现,还有代码:

string* Test1 = new string;

工作得很好。

有人可以解释一下为什么会发生这种情况以及如何使其正常工作吗?

PS:我们使用的是 Visual Studio 2012 Proffesional

编辑:我刚刚对其进行了非覆盖测试,new[]并且在创建字符串表时它的工作方式相同(返回的指针不是函数尝试的指针return),所以这似乎不是问题。有人可以解释一下为什么指针的值只针对字符串数组发生变化,以及如果似乎没有任何其他指令可以改变它,它是如何变化的?

4

1 回答 1

5

答案是不同的new/deletenew[]/delete[]您可能不会感到惊讶,但另一个令人惊讶的消息(双关语不是有意的)是该new运算符并且operator new是不同的。

这是测试问题的示例代码(您可以更改tested_typetypedef 的内容):

#include <iostream>
#include <vector>
#include <string>

typedef std::string tested_type;
void* Test2;
size_t allocated_mem_size;

void* operator new[] (size_t e)
{
    void* retaddr = operator new(e);
    Test2 = retaddr;
    allocated_mem_size = e;
    return retaddr;
}

int _tmain(int argc, _TCHAR* argv[])
{
    void* Test1 = new tested_type[10];
    std::cout << "sizeof(tested_type)*10 is " << sizeof(tested_type)*10 << "\n"
              << "Test1 is " << Test1 << "\n"
              << "Test2 is " << Test2 << "\n"
              << "operator new[] was called with e == " << allocated_mem_size << "\n"
              << "What's in the missing bytes? " << *(size_t*)Test2 << "\n";
}

我机器上的输出是:

sizeof(tested_type)*10 is 280
Test1 is 0085D64C
Test2 is 0085D648
operator new[] was called with e == 284
What's in the missing bytes? 10

(注意 - 我有一个 32 位编译器)

如果我们更改tested_type为 int,我们有:

sizeof(tested_type)*10 is 40
Test1 is 0070D648
Test2 is 0070D648
operator new[] was called with e == 40
What's in the missing bytes? 3452816845

现在,如果我们更改tested_typestd::vector<int>,我们有

sizeof(tested_type)*10 is 160
Test1 is 004AD64C
Test2 is 004AD648
operator new[] was called with e == 164
What's in the missing bytes? 10

现在我们在这里看到一个模式:添加的额外字节等于分配的元素数量。此外,添加字节的唯一时间是类型不平凡的时候......

而已!

调整地址的原因是new[]要存储元素的数量。在某些情况下我们需要存储元素数量而在其他情况下不需要存储元素数量的原因是因为delete[]调用析构函数,并且delete[](但不是delete只为单个元素调用析构函数)必须以某种方式知道它必须销毁多少元素。不需要为基本类型调用析构函数int,因此new[]不存储有多少。

(另外,我推荐std::vector- 它只是工作)

于 2014-01-08T15:29:09.493 回答