Visual Studio 2008 的语法检查

发布于 2024-11-06 04:46:18 字数 148 浏览 0 评论 0原文

是否可以?例如, 如果我输入时

std::cout << "cool"

不带分号 是否有任何 vis studio 插件可以捕获该错误(就像 eclipse 那样)或类似的语法错误并以可视方式显示错误?

Is it possible? For instance,
if I type

std::cout << "cool"

without the semicolon
are there any vis studio plugins which will catch that (the way eclipse does) or similar syntactical errors and show me the error visually?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

完美的未来在梦里 2024-11-13 04:46:19

仅供参考,Visual Studio 2010 默认情况下会执行此操作。有问题的代码带有下划线,当您将鼠标悬停在其上时,IDE 会告诉您出了什么问题。例如。对于以下内容:

int _tmain(int argc, _TCHAR* argv[])
{
    std::cout << "cool"
}

我得到右大括号下划线,消息是“错误:预期一个;”

FYI, Visual Studio 2010 does this by default. The offending code is underlined, and when you hover over it, the IDE tells you what's wrong. eg. for the following:

int _tmain(int argc, _TCHAR* argv[])
{
    std::cout << "cool"
}

I get the closing brace underlined and the message is "Error: expected a ;"

偏爱自由 2024-11-13 04:46:18

您可以尝试 VisualAssistX,它支持比标准 VC 更复杂的智能打字系统。

You can try VisualAssistX, which enables a more sophisticated intellitype system than the standard VC.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文