StrDispose - C++ Builder

C++ Builder 参考手册 ➙ System::Sysutils ➙ StrDispose


释放 StrAlloc 或 AnsiStrAlloc 分配的字符串资源

头文件:#include
命名空间:System::Sysutils
函数原型:

void __fastcall StrDispose(char *Str);
void __fastcall StrDispose(System::WideChar *Str);

参数:

  • Str: 函数 StrAlloc 或 AnsiStrAlloc 分配的字符串;

返回值:

  • 释放 Str 占用的资源,函数无返回值。

例1:请参考 StrBufSize 的例子。
例2:请参考 StrCopy 的例子。


相关:

  • System::Sysutils::StrAlloc
  • System::Sysutils::AnsiStrAlloc
  • System::Sysutils::WideStrAlloc
  • System::Sysutils::StrBufSize
  • System::Sysutils::StrNew
  • System::Sysutils::StrDispose
  • System::Sysutils
  • System::UnicodeString
  • System::StringOfChar
  • System
  • std::malloc
  • std::calloc
  • std::realloc
  • std::free

C++ Builder 参考手册 ➙ System::Sysutils ➙ StrDispose

你可能感兴趣的:(StrDispose - C++ Builder)