C++ Builder 参考手册 ➙ System::Sysutils ➙ StrCat
把一个字符串连接在另一个字符串后面
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
char * __fastcall StrCat(char * Dest, const char * Source);
System::WideChar * __fastcall StrCat(System::WideChar * Dest, const System::WideChar * Source);
参数:
- Dest:把 Source 的内容连接在 Dest 后面;
- Source:把 Source 的内容连接在 Dest 后面;
返回值:
- 把 Source 的内容连接在 Dest 后面 (Dest 字符串内容被修改),函数返回 Dest;
- Dest 字符串要有足够的内存储存原来内容和 Source 内容加在一起的容量;
- 和 std::strcat, std::_fstrcat, std::_tcscat, std::wcscat 的功能相同。
相关:
- System::Sysutils::StrAlloc
- System::Sysutils::StrBufSize
- System::Sysutils::StrCat
- System::Sysutils::StrComp
- System::Sysutils::StrCopy
- System::Sysutils::StrDispose
- System::Sysutils::StrECopy
- System::Sysutils::StrEnd
- System::Sysutils::StrIComp
- System::Sysutils::StrLCat
- System::Sysutils::StrLComp
- System::Sysutils::StrLCopy
- System::Sysutils::StrLen
- System::Sysutils::StrNew
- System::Sysutils::StrPCopy
- System::Sysutils::StrPLCopy
- System::Sysutils
- std::strcat, std::_fstrcat, std::_tcscat, std::wcscat
- <cstring>
C++ Builder 参考手册 ➙ System::Sysutils ➙ StrCat