Kotlin 评论
Kotlin 评论
注释可用于解释 Kotlin 代码,使其更具可读性。它还可用于在测试替代代码时阻止执行。
单行注释
单行注释以两个正斜杠 (//
).
之间的任何文本 //
并且该行的末尾将被 Kotlin 忽略(不会被执行)。
此示例在代码行前使用单行注释:
此示例在代码行末尾使用单行注释:
多行注释
多行注释以 /*
并结束于*/
.
之间的任何文本 /*
和*/
将被 Kotlin 忽略。
此示例使用多行注释(注释块)来解释代码:
例子
/* The code below will print the words Hello World
to the screen, and it is amazing */
println("Hello World")
亲自尝试 »