标签: delphi exception exception-handling
编码:
try StrToInt(inputNumVariables.Text); except ShowMessage('Sólo números, por favor'); end;
inputNumVariables a TEdit当try-except块应 catch <时,如果我在Text Edit中输入与整数不同的任何内容,为什么会引发异常? / em>例外,不是吗?
TEdit