Delphi System.StrCopy 复制Char 字符串

Delphi System.StrCopy 复制Char 字符串

原型:

char* strcpy(char* strDest,const char* strSrc);

Delphi 使用示例:

var
  arr: array[0..5] of Char; 
begin
  StrCopy(arr, 'Delphi');
  ShowMessage(arr);    {Delphi}
end;

  

创建时间:2020.06.02  更新时间: