StrLCopy - C++ Builder

C++ Builder 参考手册 ➙ System::Sysutils ➙ StrLCopy


复制一个字符串前面部分

头文件:#include
命名空间:System::Sysutils
函数原型:

char *__fastcall StrLCopy(char *Dest, const char *Source, unsigned MaxLen);
System::WideChar * __fastcall StrLCopy(System::WideChar *Dest, const System::WideChar *Source, unsigned MaxLen);

参数:

  • Dest:把 Source 的内容复制到 Dest 里面;
  • Source:把 Source 的内容复制到 Dest 里面;
  • MaxLen:最多复制的字符个数 (不包含结束符);

返回值:

  • 把 Source 的内容复制到 Dest 里面 (Dest 内容被替换),最多复制 MaxLen 个字符,函数返回 Dest;
  • Dest 字符串要有足够的内存储存 Source 的内容,最多需要 MaxLen + 1 个字符的存储空间,因为需要额外一个字符位置存放结束符。

void __fastcall TForm1::Button1Click(TObject *Sender)
{
    wchar_t s[] = L"zyxwvutsrqponmlkjihgfedcba";
    Sysutils::StrLCopy(s, L"abcdefg", 4);
    Memo1->Text = s;
}

运行结果:

运行结果

相关:

  • 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::StrMove
  • System::Sysutils::StrNew
  • System::Sysutils::StrPCopy
  • System::Sysutils::StrPLCopy
  • System::Sysutils
  • std::strcpy, std::_fstrcpy, std::_tcscpy, std::wcscpy
  • std::strncpy, std::_fstrncpy, std::_tcsncpy, std::wcsncpy

C++ Builder 参考手册 ➙ System::Sysutils ➙ StrLCopy

你可能感兴趣的:(StrLCopy - C++ Builder)