gpt4 book ai didi

c++ - C++0x 仍然可以使用全局运算符 new 显式分配吗?

转载 作者:IT老高 更新时间:2023-10-28 22:15:14 24 4
gpt4 key购买 nike

Wikipedia状态:

A type can be made impossible to allocate with operator new:

struct NonNewable {
void *operator new(std::size_t) = delete;
};

An object of this type can only ever be allocated as a stack object or as a member of another type. It cannot be directly heap-allocated without non-portable trickery. (Since placement new is the only way to call a constructor on user-allocated memory and this use has been forbidden as above, the object cannot be properly constructed.)

删除 operator new 类似于在当前 C++ 中将其设为私有(private),但没有显式使用全局 operator new,从而避免了特定于类的查找,仍然有效 C++0x?

NonNewable *p = ::new NonNewable();
// neither non-portable nor trickery, though perhaps not widely known

我是否遗漏了草稿中的某些内容?


需要明确的是,这是有效的 C++03 和 works fine :

struct NonNewable {
private:
void *operator new(std::size_t); // not defined
};

int main() {
// ignore the leaks, it's just an example

void *mem = operator new(sizeof(NonNewable));
NonNewable *p = ::new(mem) NonNewable();

p = ::new NonNewable();

return 0;
}

最佳答案

我相信你是对的,而维基百科是错的。 C++0x 草案标准将“已删除函数”(8.4p10)描述为不能以任何方式使用的函数(否则程序格式错误)。它们在与普通函数不同的范围或名称查找中没有任何作用。并且关于新表达的相关段落保持不变:

[5.3.4p8] A new-expression obtains storage for the object by calling an allocation function (3.7.4.1). ...

[5.3.4p9] If the new-expression begins with a unary :: operator, the allocation function's name is looked up in the global scope. Otherwise, if the allocated type is a class type T or array thereof, the allocation function's name is looked up in the scope of T. If this lookup fails to find the name, or if the allocated type is not a class type, the allocation function's name is looked up in the global scope.

所以是的,表达式 ::new NonNewable [或::new(mem) NonNewable ] 将选择 ::operator new 的重载, 忽略函数 NonNewable::operator new ,并且不会使程序格式错误。

关于c++ - C++0x 仍然可以使用全局运算符 new 显式分配吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3802454/

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