批量使用gotos和()
在批处理文件中,您可以拥有
Goto Stackoverflow
和 您可以拥有
(Goto Stackoverflow)
它们之间有什么区别?
它们被这样使用
:Stackoverflow
set /a x=%x% + 1
goto stackoverflow
:Stackoverflow
set /a x=%x% + 1
(goto stackoverflow)
In a batch file you can have
Goto Stackoverflow
and you can have
(Goto Stackoverflow)
Whats the diffrence between these?
They are being used like this
:Stackoverflow
set /a x=%x% + 1
goto stackoverflow
:Stackoverflow
set /a x=%x% + 1
(goto stackoverflow)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
批处理文件中使用括号(或 括号)指定应处理的命令列表作为一个实体,就像其他语言中的
{ ... }
一样。通常它们与 IF 或 FOR 表达式:在您的示例中,
Goto Stackoverflow
和(Goto Stackoverflow)
之间没有区别。Parentheses (or brackets) are used in batch files specify a list of commands that should be treated as an entity, like
{ ... }
in other languages. Typically they are used with IF or FOR expressions:In your example, there is no difference between
Goto Stackoverflow
and(Goto Stackoverflow)
.