这个函数怎么这个用法???(0分)

  • 主题发起人 主题发起人 cjdbd
  • 开始时间 开始时间
C

cjdbd

Unregistered / Unconfirmed
GUEST, unregistred user!
showmessagefmt(const msg:string; params: array of const);
例子: 是在书上找到的,但是我不大明白???
showmessagefmt('%s %5.4e', ['1024用科学计数法表示为',124.0]);
第一个参数: const msg:string; '%s %5.4e'
第二个参数: params: array of const ['1024用科学计数法表示为',124.0]

 
没有知道吗???
 
想问什么
例子用的不是很清楚吗
 
我是想问第一个参数:const msg:string
用'%s %5.4e'来表示: 显示出来应该是 就是 %s %5.4e 啊


 
procedure ShowMessageFmt(const Msg: string; Params: array of const);
begin
ShowMessage(Format(Msg, Params));
end;

这个showmessagefmt是ShowMessage和Format函数的组合,两个参数先传给Format函数处理,结果再传给ShowMessage函数显示。
 
format这个函数怎么用呢??/
 
用Params中的参数替换Msg中以“%”开头的格式串,具体可以查查帮助。
 
后退
顶部