请问:怎样将TEdit的Text赋给一个Real或Double型的变量?(100分)

  • 主题发起人 主题发起人 hitelf
  • 开始时间 开始时间
H

hitelf

Unregistered / Unconfirmed
GUEST, unregistred user!
比如这样:
ValEdit:TEdit;   
ValData:Real;
ValData:=ValEdit.Text;//这样肯定不行,该怎么变呢?有没有转换的东西?
 
valdata:=strtofloat(valedit.text);
 
转整型strtoint,strtoint64等
可以看帮助,有详细的类型转换讲解
 
如果转换非法,则返回 -1:
ValData := StrToFloatDef(ValEdit.Text, -1);
 
谢谢各位。
StrToFloat可以转换为浮点型,strtoint64不行吧,Converts a string that represents an integer (decimal or hex notation) to a number.
StrToFloatDef,好像没有这个函数吧。
 
多人接受答案了。
 
有StrToFloatDef函数,uses中要加入SysUtils单元
函数原型:
function StrToFloatDef(const S: string
const Default: Extended): Extended;
begin
if not TextToFloat(PChar(S), Result, fvExtended) then
Result := Default;
end;
 

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
后退
顶部