2016-10-26 50 views

回答

0

[我想你會在代碼複製在這裏,而不是顯示它的照片得到更好的迴應]

您對子程序調用是 電話:TestCom2 和子程序與標籤 開始:TestCom2 與 轉到結束:EOF

丹尼斯

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 
相關問題