猿问

请教一下关于delphi函数move用法?

var
s:String;
ps:pChar;
begin
s := '123456789';
ps := StrAlloc(9);
move(s,ps,length(s));
showMessage(ps);
showMessage(s);
showMessage(inttostr(StrBufSize(ps)));
StrDispose(ps);
end;
这样报错。。。。showMessage(s)出错,这个函数到底怎么用的?

RISEBY
浏览 354回答 2
2回答
随时随地看视频慕课网APP
我要回答