- TypeScript入门与实战
- 钟胜平编著
- 219字
- 2021-01-15 15:35:55
3.2.1 单行注释与多行注释
单行注释使用双斜线“//”来表示,并且不允许换行。示例如下:
01 // single line comment 02 const x = 0;
多行注释以“/*”符号作为开始并以“*/”符号作为结束。正如其名,多行注释允许换行。示例如下:
01 /** multi-line comment */ 02 const x = 0; 03 04 /** 05 * multi-line comment 06 * multi-line comment 07 */ 08 const y = 0;
在Visual Studio Code中,单行注释和多行注释有一处体验上的差别。当将鼠标悬停在标识符上时,只有多行注释中的内容会显示在提示框中,单行注释中的内容不会显示在提示框中,如图3-1所示。