为类重载运算符 new

发布于 2024-10-26 19:00:11 字数 438 浏览 0 评论 0原文

当我们重载类的 new 运算符时,我们将该函数声明为成员函数。 例如:

class OpNew {
public:
    OpNew() { cout << "OpNew::OpNew()" << endl;}
    void* operator new(size_t sz) {
         cout << "OpNew::new: "
            << sz << " bytes" << endl;
         return ::new char[sz];
    }
};

语句 OpNew *obj = new OpNew 在幕后是如何工作的?因为重载的 new 是 OpNew 类的成员,而不是静态成员。那么编译器如何确保对 new 成员函数的调用成功呢?

When we overload new operator of a class, we declare the function as a member function.
For eg:

class OpNew {
public:
    OpNew() { cout << "OpNew::OpNew()" << endl;}
    void* operator new(size_t sz) {
         cout << "OpNew::new: "
            << sz << " bytes" << endl;
         return ::new char[sz];
    }
};

How does the statement OpNew *obj = new OpNew work under the hood ? as overloaded new is a member of OpNew class not a static. So how does compiler ensure this call to new member function succeeds?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤舞 2024-11-02 19:00:11

类的 operator new()operator new[]() 始终是静态类成员,即使未使用关键字 static 进行声明也是如此。< /a>

C++ 标准的规定(草案 n3242),在 [class.free] 部分:

T的任何分配函数都是静态成员(即使没有显式声明static)。

An operator new() or operator new[]() for a class is always a static class member, even if it is not declared with the keyword static.

What the C++ standard says (draft n3242), in section [class.free]:

Any allocation function for a class T is a static member (even if not explicitly declared static).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文