Visual Studio代码:C/C++ IntelliSense未显示超载
Visual Studio代码不会显示函数过载,如您在屏幕截图上所见。但是据我所知,Intellisense应该显示/建议我所有功能过载。
只需请注意,您看到的代码是唯一使用VSCODE打开的文件,没有其他包含。
我需要做什么,将显示功能过载?
Visual Studio Code does not show function overloads, as you can see on the screenshot. But as far as I know, Intellisense should show/suggest me all function overloads.
Just note that the code you see is the only file that is opened with vscode, there are no other includes.
What do I need to do so that function overloads will be displayed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IntelliSense实际上是正确的,您无法在C中过载功能。 。
Intellisense is actually correct, you can't overload functions in C. Well, you technically can, but not the way you are doing it.