分隔的评论

Version >= C99

C99 介绍了使用 C++风格的单行注释。这种类型的注释以两个正斜杠开始,并运行到一行的末尾:

// this is a comment

这种类型的注释不允许多行注释,但可以通过一个接一个地添加几个单行注释来创建注释块:

// each of these lines are a single-line comment
// note how each must start with
// the double forward-slash

这种类型的注释可以在其自己的行上或在代码行的末尾使用。但是,因为它们运行到行尾,所以它们可能不会在代码行中使用

// this comment is on its own line
if (x && y) { // this comment is at the end of a line
    // this comment is within an if, on its own line
}