dart 多行注释

示例

/*和之间的所有*/内容均已评论。

void main() {

  for (int i = 0; i < 5; i++) {

    /* This is commented, and

    will not affect code */

    print('hello ${i + 1}');

  }   

}

           

以上是 dart 多行注释 的全部内容, 来源链接: utcz.com/z/315829.html

回到顶部