诊断代码以检查运行时错误的工具
是否可以检查代码并找到所有可能发生转换错误的地方。
例如:无论何时使用 = 运算符,我都必须检查 LHS 和 RHS 变量的类型。
可以用以下软件吗?
submain CodeIt.Right
SSW Code Auditor
Is it possible to check the code and find all places where conversion errors might happen.
for Ex: Wherever = operator is used , i have to check the type of the LHS and RHS variable.
Is it possible with following softwares?
submain CodeIt.Right
SSW Code Auditor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Visual Studio 中,打开 Option Strict 和 Option Explicit On。
在每个代码文件的顶部键入以下内容:
或者,在项目设置中,您可以在“编译”选项卡中将其设置为项目范围。
In Visual Studio, turn Option Strict and Option Explicit On.
Type this at the top of each code file:
Or, in your project settings, you can set it project-wide in the Compile Tab.