字符串与数据怎么连接 ( 积分: 100 )

  • 主题发起人 主题发起人 272624800
  • 开始时间 开始时间
2

272624800

Unregistered / Unconfirmed
GUEST, unregistred user!
nRetCode:integer;
nRetCode:=HS_InitFaceIDSDK(enMode);
if (nRetCode <> 0) then
begin
showmessage( '不能初始化SDK!'+nRetCode+);
end;

( '不能初始化SDK!'+nRetCode);这个连接问题
 
showmessage( '不能初始化SDK!'+inttostr(nRetCode));
 
intotostr 转化数字到字符串,如果没有uses sysunits;也是用不成的哦
总之楼上说法是对的
 
楼上说的对,你也可以使用
showmessage(Format( '不能初始化SDK! %d', [nRetCode]));
 
字符串不能和数值型直接连接!要进行类型转换
 
ChrisMao是对的,用那些“+”,inttostr什么的,都不如FORMAT快
 
可以强制转换,也可以用格式化 format进行格式化,
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
900
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部