Scala 注释

Posted 高级编程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala 注释相关的知识,希望对你有一定的参考价值。

Scala注释


Scala注释很像Java和C ++注释。

多行注释以/*开头,以*/结束。

/*
This is a multiline comment:
*/

单行注释用//开头,并继续到行尾:

// This is a single line comment

在Scala中,我们可以嵌套多行注释:

/*
This is an outer comment
/* And this comment
is nested
*/
Outer comment
*/