gpt4 book ai didi

c++ - 缺少功能描述 (IDE)

转载 作者:行者123 更新时间:2023-12-01 14:48:38 27 4
gpt4 key购买 nike

我目前正在为大学学习 C++。
目前使用 Visual Studio 代码(主要)、Visual Studio 企业和 Visual Studio 社区。

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



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

最佳答案

您的 Java 库已被注释。标准库没有注释。你必须use the reference如果您想要有关 std::vector 之类的信息

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

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

int main()
{
mys //<< start typing this here
}
mys应该显示在选择中。当你看到 mystruct在选择器中,您还会在工具提示中看到“因此有注释”。

关于c++ - 缺少功能描述 (IDE),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60495606/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com