gpt4 book ai didi

c++ - 在对象数组中,constructor 被多次调用,operator new[] 只被调用一次,为什么?

转载 作者:太空狗 更新时间:2023-10-29 20:06:44 25 4
gpt4 key购买 nike

当在堆中创建对象时,它(新)做了两件事。

1: 调用 operator new

2:调用构造函数初始化对象。

我正在尝试创建对象数组,例如 4 个对象,因此它会调用构造函数和析构函数 4 次,这是有道理的,但它只调用一次 operator new[] ??为什么?以下是我尝试运行的代码。

#include <iostream>
using namespace std;
class test
{
public:
static void *operator new[] (size_t size)
{
cout<<"operaotor new called"<<endl;
return ::operator new[](size);
}

test()
{
cout<<"constructor called"<<endl;
}
~test()
{
cout<<"destructor called"<<endl;
}
};

int main()
{

test *k = new test[4];
delete []k;
}

最佳答案

operator new[] 只是 在那里分配必要的空间,没有别的。当然,它只会这样做一次,因为其他任何事情都是无稽之谈并且不会获得连续的缓冲区。 sizenew test[4] 的情况下,您得到的参数, 应该是 4 * sizeof(test) .

关于c++ - 在对象数组中,constructor 被多次调用,operator new[] 只被调用一次,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6433573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com