黑
黑狼
Unregistered / Unconfirmed
GUEST, unregistred user!
var
s,s1:string;
begin
s:=#$A9;
s1:='hello';
s:=s+s1;
form1.caption:=s;
end;
我期望的结果应该是#$A9hello,但是结果却不是。
而且,如果我把s:=#0,则form1.caption显示(注:不是s的变量值)为空。
请告诉我这是为什么?我曾经用insert,concat,这些函数都没用,我也是过用pchar来代替
string也没有用。
s,s1:string;
begin
s:=#$A9;
s1:='hello';
s:=s+s1;
form1.caption:=s;
end;
我期望的结果应该是#$A9hello,但是结果却不是。
而且,如果我把s:=#0,则form1.caption显示(注:不是s的变量值)为空。
请告诉我这是为什么?我曾经用insert,concat,这些函数都没用,我也是过用pchar来代替
string也没有用。