What is the difference between quot;newquot; and quot;mallocquot; and quot;callocquot; in C++?(new 和有什么不一样?和“malloc和“calloc在 C++ 中?)
问题描述
new
"和new
"有什么区别?和malloc
"和calloc
";和其他家庭成员?
What is the difference between "new
" and "malloc
" and "calloc
" and others in family?
(何时)除了new
"之外我还需要什么吗??
(When) Do I need anything other than "new
" ?
其中一个是否使用其他实现?
Is one of them implemented using any other?
推荐答案
new
和 delete
是 C++ 特定的功能.它们在 C 中不存在. malloc
是老派的 C 做事方式.大多数情况下,您不需要在 C++ 中使用它.
new
and delete
are C++ specific features. They didn't exist in C. malloc
is the old school C way to do things. Most of the time, you won't need to use it in C++.
malloc
分配未初始化的内存.分配的内存必须用free
释放.calloc
与malloc
类似,但使用常量 (0) 初始化分配的内存.需要用free
释放.new
通过调用构造函数(如果它是一个对象)来初始化分配的内存.用new
分配的内存应该用delete
释放(它依次调用析构函数).它不需要您手动指定所需的大小并将其转换为适当的类型.因此,它更现代,更不容易出错.
malloc
allocates uninitialized memory. The allocated memory has to be released withfree
.calloc
is likemalloc
but initializes the allocated memory with a constant (0). It needs to be freed withfree
.new
initializes the allocated memory by calling the constructor (if it's an object). Memory allocated withnew
should be released withdelete
(which in turn calls the destructor). It does not need you to manually specify the size you need and cast it to the appropriate type. Thus, it's more modern and less prone to errors.
这篇关于"new" 和有什么不一样?和“malloc"和“calloc"在 C++ 中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:"new" 和有什么不一样?和“malloc"和“calloc"在 C++ 中?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01