var
  A:String;
  B:Integer;
begin
  A:=A+IntToStr(B);
end;
这里的IntToStr()函数就是将整形转换为字符串,同样还有StrToInt()函数等...