在 vs code 中获取建议时遇到问题

问题描述 投票:0回答:2

我正在学习c++代码并使用vs code作为IDE。一切进展顺利,但现在我在编写代码时没有得到建议。我正在使用 Intellisense 的 C/C++ 扩展。我尝试重新安装它,重置其设置,但没有任何效果。请帮忙。

这是我输入

#include
时显示的唯一建议:

suggestion

c++ visual-studio-code intellisense
2个回答
0
投票

您需要保存(cmd+s / ctrl+s)文件才能使智能感知工作。


0
投票

我可以看到文件名是Untitled-1。 Intellisense 将不起作用,因为您需要通知 VS Code 它是一个 C/C++ 文件。

您应该创建一个新文件并使用 .c 或 .cpp 扩展名保存。

如果您想为 QT5 或 OpenCV 等外部库添加自动完成功能,您需要按照此链接配置智能感知。将外部库的包含路径添加到 c_cpp_properties.json 中的 includePath 中。

示例-

    "includePath": [
          "${myDefaultIncludePath}", // Adds intellisense for the files from current workspace folder. 
          "path/to/include/folder"
     ]

c_cpp_properties.json参考

© www.soinside.com 2019 - 2024. All rights reserved.