编码:
try
StrToInt(inputNumVariables.Text);
except
ShowMessage('Sólo números, por favor');
end;
当 try-except 块应该捕获异常时,如果我在 Text Edit 中键入与整数不同的任何内容,作为 inputNumVariables 为什么会引发和异常 ,不是吗?TEdit
编码:
try
StrToInt(inputNumVariables.Text);
except
ShowMessage('Sólo números, por favor');
end;
当 try-except 块应该捕获异常时,如果我在 Text Edit 中键入与整数不同的任何内容,作为 inputNumVariables 为什么会引发和异常 ,不是吗?TEdit