如何为可变参数函数(即参数数量未定义的函数)编写 Doxygen 注释?
我正在尝试为具有无限数量参数的函数编写 doxygen 块注释,然后我找不到合适的标签。提供的参数应该都是字符串,它们将在函数中连接起来形成一个新的字符串。
doxygen 标签的正确用途是什么?
I am trying to write a doxygen block comment for a function with unlimited number of parameters, then I couldn't find a right tag for it. Supplied parameters should all be strings, and they will be concatenated in the function to form a new string.
What is the right use of doxygen tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我经常在 phpdoc 中看到一种模式(格式为doxygen 理解的)是:
是的,字面上的
...
作为变量名。A pattern I see frequently in phpdoc (the format of which doxygen understands) is:
Yes, literally
...
as the variable name.实际上,phpDocumentor 上的语法是
$paramname,...
Actually, the syntax on the phpDocumentor is
$paramname,...