Scala注释是编译器或解释器不执行的语句。注释可用于提供关于变量、方法、类或任何语句的信息或解释。它还可以用于隐藏程序代码细节。
在Scala中,有三种类型的注释
单行注释用于注释单行代码
// Example of single line comment.
object MainObject {
def main(args: Array[String]) {
var a = 1 // Here, a is a variable
println(a)
}
}
输出:
1
多行注释用于在程序中注释多行代码。
// Example of multi line comment.
object MainObject {
def main(args: Array[String]) {
var a = 1
println(a)
}
/*
In the main method, we have created a variable named a
and printed it
*/
}
输出:
输出:
1
// Example of documentation comment.
object MainObject {
def main(args: Array[String]) {
var a = 1
println(a)
}
/**
* In the main method, we have created a variable named a
* and printed it
*
*/
}
输出:
1
本文链接:http://so.lmcjl.com/news/20219/