C++ Builder 参考手册 ➙ System::Sysutils ➙ CPPFreeAndNil
释放从 TObject 继承过来的类的对象,并清为 NULL
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
void __fastcall CPPFreeAndNil(System::TObject* &Obj);
参数:
- Obj:从 TObject 继承过来的类的对象
返回值:
- 函数无返回值,释放从 TObject 继承过来的类的对象,并清为 NULL;
- 相当于 delete obj; obj = nullptr;
- 这是 C++ Builder 10.4 新增的函数,函数模板 FreeAndNil 内部调用 CPPFreeAndNil 来实现功能;
- 相同功能的函数:函数或函数模板 FreeAndNil 在早期的 C++ Builder 里面就有,但是参数会有区别,详细说明请参考 FreeAndNil。
相关:
- System::Sysutils::FreeAndNil
- System::Sysutils::CPPFreeAndNil
- System::Sysutils::NewStr
- System::Sysutils::DisposeStr
- System::Sysutils::StrAlloc
- System::Sysutils::AnsiStrAlloc
- System::Sysutils::WideStrAlloc
- System::Sysutils::StrBufSize
- System::Sysutils::StrNew
- System::Sysutils::StrDispose
- System::Sysutils
- System::StringOfChar
- System
- std::malloc
- std::calloc
- std::realloc
- std::free
- <cstdlib>
C++ Builder 参考手册 ➙ System::Sysutils ➙ CPPFreeAndNil
网友评论