批量使用gotos和()

发布于 2024-12-11 11:08:03 字数 294 浏览 0 评论 0原文

在批处理文件中,您可以拥有

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无名指的心愿 2024-12-18 11:08:03

批处理文件中使用括号(或 括号)指定应处理的命令列表作为一个实体,就像其他语言中的 { ... } 一样。通常它们与 IFFOR 表达式:

IF EXIST %windir% (
    echo "one line"
    echo "another line"
)

在您的示例中,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:

IF EXIST %windir% (
    echo "one line"
    echo "another line"
)

In your example, there is no difference between Goto Stackoverflow and (Goto Stackoverflow).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文