C++ Builder 參考手冊 ? System::Sysutils ? StrCat
把一個字符串連接在另一個字符串后面
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
char * __fastcall StrCat(char * Dest, const char * Source);
System::WideChar * __fastcall StrCat(System::WideChar * Dest, const System::WideChar * Source);
參數(shù):
- Dest:把 Source 的內(nèi)容連接在 Dest 后面;
- Source:把 Source 的內(nèi)容連接在 Dest 后面摇幻;
返回值:
- 把 Source 的內(nèi)容連接在 Dest 后面 (Dest 字符串內(nèi)容被修改),函數(shù)返回 Dest蚁滋;
- Dest 字符串要有足夠的內(nèi)存儲存原來內(nèi)容和 Source 內(nèi)容加在一起的容量愚争;
- 和 std::strcat, std::_fstrcat, std::_tcscat, std::wcscat 的功能相同。
相關(guān):
- 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