根据我的代码,如果%~1
大于7000
,请转到ExceedError
IF "%~1" GTR "7000" GOTO ExceedError
ExceedError
的内容:
ECHO Value exceeded the maximum value. See help file.
EXIT /B
但是这发生了:
...modules>If "71" GTR "7000" GOTO ExceedError
...modules>Echo Value exceeded the maximum value. See help file.
Value exceeded the maximum value. See help file.
...modules>exit /B
发生了什么事?有什么问题吗?
答案 0 :(得分:7)
您已经用双引号将参数引起来,这将强制进行字符串比较。 要比较数字,请尝试不使用引号:
IF %~1 GTR 7000 GOTO ExceedError
如果要防止错误,可以再添加一行:
set /a "_number=%~1" >nul 2>&1 || set "_number=0"
IF %_number% GTR 7000 GOTO ExceedError
在输入错误的情况下,您需要将值与0
作为默认值进行比较。您可以根据需要进行更改