C++ Builder 参考手册 ➙ System::Sysutils ➙ AppendStr
把一个字符串后面接上另一个字符串,过时的函数
头文件:#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::Sysutils ➙ AppendStr
网友评论