
CODE: [Copy to clipboard]被调程序(可能也是主调程序)的结构...
:: Call 型调用自身
call %0 : labelname
...
:: Goto 型调用自身
%0 : lablename
...
:: Call 型调用其他Bat
call bat_name : labelname
...
:: Goto 型调用其他Bat
bat_name : lablename
...
CODE: [Copy to clipboard]----------------------------------------------------------------------------@echo off
if "%1"==":" goto %2
...
:labelname
:: 模块的代码段
...
goto end
...
:end
| 欢迎光临 中国DOS联盟论坛 (http://cndos.fam.cx/forum/) | Powered by Discuz! 2.5 |