Is it safe to delete a NULL pointer?(删除 NULL 指针是否安全?)
问题描述
删除NULL指针安全吗?
Is it safe to delete a NULL pointer?
这是一种好的编码风格吗?
And is it a good coding style?
推荐答案
delete
无论如何都会执行检查,因此在您这边检查会增加开销并且看起来更丑陋.非常好的做法是在 delete
之后将指针设置为 NULL(有助于避免重复删除和其他类似的内存损坏问题).
delete
performs the check anyway, so checking it on your side adds overhead and looks uglier. A very good practice is setting the pointer to NULL after delete
(helps avoiding double deletion and other similar memory corruption problems).
如果 delete
默认情况下将参数设置为 NULL,就像在
I'd also love if delete
by default was setting the parameter to NULL like in
#define my_delete(x) {delete x; x = NULL;}
(我知道 R 和 L 的值,但这不是很好吗?)
(I know about R and L values, but wouldn't it be nice?)
这篇关于删除 NULL 指针是否安全?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:删除 NULL 指针是否安全?


- 如何提取 __VA_ARGS__? 2022-01-01
- DoEvents 等效于 C++? 2021-01-01
- XML Schema 到 C++ 类 2022-01-01
- 将 hdc 内容复制到位图 2022-09-04
- GDB 不显示函数名 2022-01-01
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01