如何使用 Doxygen 记录类属性?
我正在尝试使用 Doxygen 记录类属性。目前,受保护的属性显示在特定类的页面顶部的列表中。我想给他们一个解释。
我尝试在类的开头上方和属性声明的正上方使用 @param [name] [description]
。我什至尝试将它们放入我的构造函数类的文档块中,但它只是破坏了它。
有什么我想念的吗?
——洛根
I'm attempting to document class attributes using Doxygen. Currently, the protected attributes show up in the list at the top of the page for the specific class. I'd like to put an explanation for them.
I've tried using @param [name] [description]
both above the beginning of the class and right above the declaration of the attributes. I even tried putting them into the docblock for my constructor class and it just broke it.
Is there something I'm just missing?
-- Logan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在属性之前使用
<
或注释:请注意,您可以使用 @brief、@note 和类似的例如:
You have to use
<
or comment right before the attribute:Note that you can use @brief, @note and similar e.g.:
我发布了一个解决方法作为此问题重复项的答案: Doxygen:如何在 php 中描述类成员变量? 对于需要与 phpDoc 注释样式兼容的解决方案的其他人来说,从这里链接它可能会很有用。
I've posted a workaround as an answer to a duplicate of this question: Doxygen: how to describe class member variables in php? It may be useful to link it from here for others that need solution compatible with phpDoc annotation style.