缺少函数描述 (IDE)

missing function descriptions (IDE)

我目前正在为 uni 学习 c++。 当前使用 visual studio 代码(主要),visual studio 企业和 visual studio 社区。

我想知道是否有任何方法可以在我输入函数时显示函数的描述。当我写 javascript 时,我总是得到描述,但不是 c++(见图)

正如你在我写 javascript 时看到的那样,当我开始写它时,我得到了关于函数功能的一个体面的描述,我能以某种方式为 c++ 得到它吗? 如果没有,有没有比谷歌搜索每个单独的函数来弄清楚它们的作用更好的方法? 谢谢!

您的 java 库已评论。标准库没有评论。如果您想了解 std::vector

之类的信息,则必须 use the reference

注释不是 visual studio 的一部分,它们在您引用的源代码中。你可以自己看看把这个小程序放在编辑器中。

//thus there is a comment
struct mystruct {};

int main()
{
    mys //<< start typing this here
}

mys 应该显示在选择中。当您在选择器中看到 mystruct 时,您还会在工具提示中看到“thus there is a comment”。