美文网首页
AppendStr - C++ Builder

AppendStr - C++ Builder

作者: 玄坴 | 来源:发表于2021-09-09 15:49 被阅读0次

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

相关文章

网友评论

      本文标题:AppendStr - C++ Builder

      本文链接:https://www.haomeiwen.com/subject/mbpdahtx.html