gpt4 book ai didi

windows - 类似于批处理文件中的函数/方法?

转载 作者:可可西里 更新时间:2023-11-01 11:55:48 26 4
gpt4 key购买 nike

是否有任何东西可以模仿 Java、C# 等已知的方法?我在一个批处理文件中有 5 行命令,这 5 行在批处理文件中的多个位置使用。我不能使用 goto,因为根据这 5 行创建的错误级别,我有不同的操作。我尝试将我的 5 行放在批处理文件 5lines.bat 中,但原始批处理文件 original.bat 只调用 5lines.bat 并且在调用 5lines.bat 后不执行命令):这就是我的 original.bat 的样子喜欢:

5lines.bat
echo this gets never called, how to make sure this gets called?

5lines.bat里面没有exit之类的东西!如何确保调用 5lines.bat 之后的行?

最佳答案

你可以使用调用命令:

call:myDosFunc

然后这样定义函数:

:myDosFunc    - here starts the function
echo. here the myDosFunc function is executing a group of commands
echo. it could do a lot of things
goto:eof

来源:Batch Functions

关于windows - 类似于批处理文件中的函数/方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10149194/

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