重载new和delete
- operator new()的返回值是一个void*,而不是指向任何特定类型的指针。所做的是分配内存,而不是完成一个对象建立——直到构造函数调用了才完成了对象的创建,它是编译器确保的动作,不在我们的控制范围之内。
- operator delete()的参数是一个指向由operator new()分配的内存的void*,而不是指向任何特定类型的指针。参数是一个void*是因为它是在调用析构函数后得到的指针。析构函数从存储单元里移去对象。operator delete()的返回类型是void。
I'm so cute. Please give me money.
- Post link: https://github.com/TheBge/TheBge.github.io/2020/12/16/const%E5%9C%A8%E9%87%8D%E8%BD%BD%E4%B8%8A%E7%9A%84%E5%8C%BA%E5%88%AB/
- Copyright Notice: All articles in this blog are licensed under unless otherwise stated.
若没有本文 Issue,您可以使用 Comment 模版新建。
GitHub IssuesGitHub Discussions