評論程式碼行
要對程式碼進行註釋,可以使用 &::
或 &rem
。你也可以使用 &&
或||
來取代 &
。
示例:
@echo off
echo This is a test &::This is a comment
echo This is another test &rem This is another comment
pause
好奇心 :SET
命令允許在沒有 &rem
的情況下進行有限的內聯評論:
set "varname=varvalue" limited inline comment here
限制:
- 雙引號
set "varname=varvalue"
或set "varname="
的語法, - 內聯註釋可能不包含任何雙引號,
- 任何
cmd
有毒字元| < > &
必須正確地轉義^| ^< ^> ^&
, - 括號
( )
必須在括號內的程式碼塊中正確轉義為^( ^)
。