Visual Studio 2008 的语法检查
是否可以?例如, 如果我输入时
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅供参考,Visual Studio 2010 默认情况下会执行此操作。有问题的代码带有下划线,当您将鼠标悬停在其上时,IDE 会告诉您出了什么问题。例如。对于以下内容:
我得到右大括号下划线,消息是“错误:预期一个;”
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:
I get the closing brace underlined and the message is "Error: expected a ;"
您可以尝试 VisualAssistX,它支持比标准 VC 更复杂的智能打字系统。
You can try VisualAssistX, which enables a more sophisticated intellitype system than the standard VC.