在C++中,delete
关键字用于释放动态分配的内存
if (ptr != nullptr) {
delete ptr;
ptr = nullptr; // 将指针设置为nullptr,避免悬挂指针
}
nullptr
,以避免悬挂指针。悬挂指针是指向已释放内存的指针,访问它们可能导致未定义行为。delete ptr;
ptr = nullptr;
std::unique_ptr
和std::shared_ptr
,它们可以自动管理内存。当智能指针离开作用域时,它们会自动删除所指向的对象,从而避免内存泄漏。#include<memory>
std::unique_ptr<int> ptr(new int);
// 或者使用C++14的std::make_unique
// std::unique_ptr<int> ptr = std::make_unique<int>();
// 无需手动删除,当ptr离开作用域时,它会自动删除所指向的对象
nullptr
。遵循这些建议,你可以在C++中安全地使用delete
关键字。