Dart中的嵌套多行注释

时间:2013-09-09 07:31:58

标签: dart

我的代码包含许多用多行注释语法编写的文档注释,如示例

/** 
 * This class is used as an example.
 *
 * To ask about multiline comments.
 */
class A {
}

/**
 * Another example class with comment.
 */
class B {
}

有时候,在调试/重构或试验代码时,我想要注释掉一些代码块。在此示例中,我想将类AB注释掉。有没有办法以简单的方式执行此操作,而无需查看文档注释的开始和结束位置,也无需使用一行注释语法//单独评论每一行?

1 个答案:

答案 0 :(得分:5)

Dart(与其他类C语法语言相反)本身支持嵌套的多行注释。

所以你可以写

/* Commented for debugging purposes!!! Do not forget to uncomment!!!
/** 
 * This class is used as an example.
 *
 * To ask about multiline comments.
 */
class A {
}

/**
 * Another example class with comment.
 */
class B {
}
*/

并不关心注释块中的一些嵌套注释。