gpt4 book ai didi

windows - 我怎样才能 "break"退出 For 循环?

转载 作者:可可西里 更新时间:2023-11-01 11:44:14 24 4
gpt4 key购买 nike

下面,当我执行 goto 命令时,它只是挂起,我必须按 Control-C。我也试过 EXIT/b 。我尽量避免使用 goto。有没有办法做我想做的事?

:SUB_bigRandLooper

set /a lcv=0

FOR /L %%s IN ( 0 , 0 , 1 ) DO (

set big-rand=!random:~-4!
echo big-rand is !big-rand!
set /a lcv=%lcv+1
if !big-rand! GTR 9900 goto bigRandLooperWrapup
)

:bigRandLooperWrapup

echo biggest-rand is %big-rand%
echo lcv is %lcv%

EXIT /B

.

最佳答案

简短的回答是:不,你不能。


由于您正在使用 for/L 并建立了一个无限循环,并且该循环在执行之前已进行预处理和缓存,因此它不能被 goto 中断; goto 中断循环上下文,或者更准确地说,(/) block 上下文,因此不再执行 block 中的命令,但是循环本身仍在运行。

您可以通过以下代码证明这一点:

for /L %%I in (1,1,100000) do (
echo %%I
if %%I equ 10 goto :SKIP
)
:SKIP
echo skipped

您会看到 echo %%I 仅针对从 110%%I 执行, 但在 echo skipped 处不会立即继续执行,而是有一个明显的延迟,因为循环在后台完成迭代,尽管没有执行更多命令。


虽然有一个解决方法:您可以使用 goto 建立一个无限循环,如下所示:

:SUB_bigRandLooper

set /A lcv=0
:bigRangLooperLoop
set big-rand=!random:~-4!
echo big-rand is !big-rand!
set /A lcv+=1
if !big-rand! gtr 9900 goto :bigRandLooperWrapup
goto :bigRangLooperLoop

:bigRandLooperWrapup
echo biggest-rand is %big-rand%
echo lcv is %lcv%
exit /B

我知道 goto 循环比 for/L 循环慢,但这是创建可破坏无限循环的唯一方法。

一种更快的方法是嵌套两种循环方法:使用 for/L 迭代几千次并包裹一个无限的 goto 循环。


另一种解决方法是利用 exit 命令可以中断(无限)for/L 循环这一事实。但是由于这也会退出运行批处理文件的 cmd 实例,因此需要将循环放入单独的 cmd 实例中。当然环境是和现在完全分开的。解决方案可能如下所示:

:SUB_bigRandLooper
@echo off
rem // Check for argument, interpret it as jump label if given:
if not "%~1"=="" goto %~1

rem /* Establish explicit `cmd` instance for executing the `for /L` loop;
rem the `for /F` loop implicitly creates the new `cmd` instance for the command
rem it executes, so we do not have to explicitly call `cmd /C` here; the resulting
rem values are echoed by the sub-routine and captured here by `for /F`: */
for /F "tokens=1,2" %%I in ('"%~f0" :bigRandLooperLoop') do (
rem // Assign captured values to environment variables:
set "big-rand=%%I" & set "lcv=%%J"
)

:bigRandLooperWrapup
echo biggest-rand is %big-rand%
echo lcv is %lcv%
exit /B

:bigRandLooperLoop
setlocal EnableDelayedExpansion
set /A lcv=0
for /L %%s in (0,0,1) do (
set big-rand=!random:~-4!
rem /* Explicitly redirect this output to the console window to prevent it from
rem being captured by `for /F` in the main routine too: */
> con echo big-rand is !big-rand!
set /A lcv+=1
if !big-rand! gtr 9900 (
rem // Output found values in order to be able to capture them by `for /F`:
echo !big-rand! !lcv!
rem // Break loop and leave current `cmd` instance:
exit
)
)
endlocal

关于windows - 我怎样才能 "break"退出 For 循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50120992/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com