带有“@”的注释的名称是什么?

What is the name for comments with '@' in them?

这是一个无法查找的案例,因为我不知道它的名称。在许多代码编辑器中,您可以将它们包含在定义的前面的注释块中,然后在其他地方获得有用的鼠标悬停文本,或者其他程序可以阅读这些注释并使用它们做一些有用的事情。我正在处理与 Doxygen 相关的文件。例如:

    /// AskWhosebug() - Gets answer to a question
    /// @name AskWhosebug
    /// @brief Ask Stack Overflow
    /// @param q Question to be asked 
    /// @return Number of up votes for this cheeky comment
    int AskWhosebug(std::string q)
    {
       /* Some great computer codes*/
       return 1234687624;
    }

这种评论叫什么名字? 奖励问题:这些(通常)不是任何语言的特征,而是 IDE 的 UI/UX 特征,例如 Visual Studio,正确吗?

我想你要找的是 Doxygen markdown

https://www.doxygen.nl/manual/markdown.html