AppendStr - C++ Builder

C++ Builder 参考手册System::SysutilsAppendStr


把一个字符串后面接上另一个字符串,过时的函数

头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:

void __fastcall AppendStr(System::AnsiString &Dest, const System::AnsiString S);

参数:

  • Dest:把字符串 S 连接在字符串 Dest 的后面;
  • S:把字符串 S 连接在字符串 Dest 的后面;

返回值:

  • 函数相当于执行 Dest = Dest + S; 函数执行结束时直接修改了参数 Dest;
  • 函数的参数是 System::AnsiString 类型的,是过时的函数。

相关:

  • System::Sysutils::AppendStr
  • System::Sysutils::AssignStr
  • System::Sysutils::StrMove
  • System::Sysutils::StrPCopy
  • System::Sysutils::StrPLCopy
  • System::Sysutils::StrAlloc
  • AnsiStrAlloc
  • System::Sysutils::WideStrAlloc
  • System::Sysutils::StrNew
  • System::Sysutils::NewStr
  • System::Sysutils::DisposeStr
  • System::Sysutils
  • std::strcpy, std::_fstrcpy, std::_tcscpy, std::wcscpy
  • std::strncpy, std::_fstrncpy, std::_tcsncpy, std::wcsncpy
  • std::stpcpy, std::_stpcpy, std::_tcspcpy, std::wcspcpy, std::_wcspcpy
  • std::strdup, std::_strdup, std::_fstrdup, std::_tcsdup, std::_wcsdup
  • std::strcat, std::_fstrcat, std::_tcscat, std::wcscat
  • std::strncat, std::_fstrncat, std::_tcsncat, std::wcsncat
  • <cstring>

C++ Builder 参考手册System::SysutilsAppendStr

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容