/ **在C ++中是什么意思
问题描述:
我试图在c ++中添加一个块注释,但我做了一个type-o并写了 / **
而不是 / *
。我注意到里面的评论以粗体显示。有人知道这是什么意思吗?
I was trying to add a block comment in c++, but I made a type-o and wrote /**
instead of /*
. I noticed that the comment inside got in bold. Does anyone know what it means?
答
这种形式的注释由 Doxygen -该软件使人们能够生成源代码的文档。请访问该网站。
This form of comment is used by Doxygen - This software enables one to generate documentation for the source code. Please see the web site.
我想您的IDE可以理解。
I guess your IDE understands this.