在'goto'命令之后使用什么而不是'pause'?

时间:2014-06-28 15:49:14

标签: batch-file notepad

我正在制作一个"操作方法" Notepad中的批处理文件。我试图演示goto命令,我想继续。我试过了pause,但后来我发现它不会起作用,所以我不知道该怎么做。这是我代码的一部分......

:start
echo This is  the goto command
goto:start
pause 
cls
echo That is the product of the goto command

我尝试了pausecls

1 个答案:

答案 0 :(得分:0)

要演示一个简单的无条件goto命令,这样做会更好:

echo this is before
goto :continue
echo this line is never reached.
:continue
echo this is after the "goto"

(这是一个“向前”跳跃。你的是一个“向后”的跳跃)