目录 1. 添加一行注释2. 行尾添加注释3. 行间添加注释4. 添加多行注释5. 总结
1. 添加一行注释
REM, @REM和::的异同:
:: 不输出注释内容
REM 输出注释内容
@REM 不输出注释内容
:: this is comment 1REM this is comment 2@REM this is comment 3
另外:@ECHO OFF会关闭注释输出;@ECHO ON则打开注释输出。
@ECHO OFF:: this is comment 4REM this is comment 5@REM this is comment 6@ECHO ON:: this is comment 7REM this is comment 8@REM this is comment 9
执行结果:
2. 行尾添加注释
如何在命令后面添加注释?
错误示范:
echo hello :: this is comment 1echo hello REM this is comment 2echo hello @REM this is comment 3
正确示范:
echo hello & :: this is comment 4echo hello & REM this is comment 5echo hello & @REM this is comment 6
3. 行间添加注释
其实,% 注释 %放在任何地方都可以。注意:为了避免错误,%和注释之间要留有空格。
echo hello % this is a comment % world% this is a comment %echo hello world% cd %echo hello world
4. 添加多行注释
注意:@GOTO :STEP1中冒号后面的“STEP1”是标签名,可以随便取。不过建议全部使用大写字母。
@GOTO :STEP1This is comment 1-1This is comment 1-2.:STEP1echo hello@GOTO :STEP2This is comment 2-1.This is comment 2-2.:STEP2echo world
5. 总结
建议尽量使用下面两种符号来为.bat批处理文件添加注释:
(1):: 注释
(2)% 注释 %,注意:为了避免错误,%和注释之间要留有空格。
快三技巧准确率100o % this is a comment % world% this is a comment %echo hello world% cd %echo hello world
4. 添加多行注释
注意:@GOTO :STEP1中冒号后面的“STEP1”是标签名,可以随便取。不过建议全部使用大写字母。
@GOTO :STEP1This is comment 1-1This is comment 1-2.:STEP1echo hello@GOTO :STEP2This is comment 2-1.This is comment 2-2.:STEP2echo world
5. 总结
建议尽量使用下面两种符号来为.bat批处理文件添加注释:
(1):: 注释
(2)% 注释 %,注意:为了避免错误,%和注释之间要留有空格。