new, delete ,malloc amp; free(新建,删除,malloc amp;自由)
问题描述
这个问题是在一次采访中问我的:
This question was asked to me in an interview:
在 C++ 中,
- 如果我们使用
malloc
分配内存并使用delete
来释放分配的内存会怎样? - 如果我们使用
new
分配内存并使用free
释放它会怎样?
- what if we allocate memory using
malloc
and usedelete
to free that allocated memory? - what if we allocate the memory using
new
and free it usingfree
?
如果在代码中使用上述东西,我们会面临哪些问题?
What are the problems that we would face if the above things are used in the code?
我的回答是没有区别.我这样说对吗?
My answer was there is no difference. Was I right in saying so?
推荐答案
如果你这样做,你会遇到未定义的行为.永远不要尝试.尽管 new
可能通过 malloc()
实现,而 delete
可能通过 free()
实现,但不能保证它们确实是这样实现的并且用户也可以自行决定重载new
和delete
.您可能会遇到堆损坏.
If you do so you will run into undefined behavior. Never try that. Although new
might be implemented through malloc()
and delete
might be implemented through free()
there's no guarantee that they are really implemented that way and also the user can overload new
and delete
at his discretion. You risk running into heap corruption.
除此之外不要忘记,当您调用 malloc()
时,您将获得原始内存 - 没有调用构造函数 - 当您调用 free()
时没有析构函数被调用.这也可能导致程序的未定义行为和不正常运行.
Other than that don't forget that when you call malloc()
you get raw memory - no constructor is invoked - and when you call free()
no destructor is invoked. This can as well lead to undefined behavior and improper functioning of the program.
底线是...永远不要这样做.
The bottom line is... never do this.
这篇关于新建,删除,malloc &自由的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:新建,删除,malloc &自由
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 从python回调到c++的选项 2022-11-16
- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01