C 风格的注释(块注释)可以嵌套是正确的,但是在嵌套注释时需要注意,不能嵌套在同一个注释块中
时间: 2024-05-15 20:12:40 浏览: 58
嵌套
是的,C风格的块注释可以嵌套,但是需要注意不能在同一个注释块中嵌套。嵌套注释应该使用不同的注释块。例如:
```
/* This is the outer block comment. */
/*
This is the inner block comment.
/* This is a nested comment. */
This is still part of the inner block comment.
*/
This is outside of both block comments.
```
在上面的例子中,内部块注释是嵌套在外部块注释中的,但是它使用了一个新的注释块来包含它的内容。这样做是合法的。
阅读全文