答案 0 :(得分:0)
[我认为你可以通过复制代码来获得更好的回复,而不是显示它的图片]
您对子程序的调用是 致电:TestCom2 子程序以标签开头 :TestCom2 最后以 GoTo:EOF
丹尼斯
答案 1 :(得分:0)
这是包含子程序的批处理文件的示例。
prompt $g
set fred="a b c d e f g"
call :TestSub1 %fred%
call :TestSub2 %fred%
GoTo EndBatch
:TestSub1
echo %1
Pause in TestSub1
GoTo :eof
:TestSub2
echo %~1
Pause in TestSub2
GoTo :eof
:EndBatch
Pause at EndBatch