C++ Builder 參考手冊 ? System::Sysutils ? DisposeStr
釋放由 NewStr 分配的字符串,NewStr 和 DisposeStr 都是過時的函數(shù)
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
void __fastcall DisposeStr(System::PAnsiString P);
參數(shù):
- P: 使用 NewStr 分配的字符串;
返回值:
- 無余耽;參數(shù) P 指向的 AnsiString 被銷毀豆村,釋放占用的資源;
- NewStr 和 DisposeStr 都是過時的函數(shù)奈懒,為了兼容以前的程序留下來的。
相關(guān):
- 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 ? DisposeStr