注释对程序员和未来可能需要修改程序以满足其需求的用户都很有用。 在所有 AutoLISP 程序文件(无论大小)中都包含注释是一种很好的编码做法。使用注释执行以下操作:
注释以一个或多个分号 ( ; ),并继续到行的末尾。 ; This entire line is a comment (setq area (* pi r r)) ; Compute area of circle 任何文本 ;| ... |; 被忽略。因此,注释可以包含在一行代码中,也可以扩展为多行。这种类型的注释称为内联注释。 (setq tmode ;|some note here|; (getvar "tilemode")) 以下示例显示了跨多行继续的注释: (setvar "orthomode" 1) ;|comment starts here and continues to this line, but ends way down here|; (princ "\nORTHOMODE set On.") 父主题: |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-1-7 19:46
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.