诊断代码以检查运行时错误的工具

发布于 2024-11-06 08:51:11 字数 162 浏览 1 评论 0原文

是否可以检查代码并找到所有可能发生转换错误的地方。

例如:无论何时使用 = 运算符,我都必须检查 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 技术交流群。

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

发布评论

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

评论(1

把梦留给海 2024-11-13 08:51:11

在 Visual Studio 中,打开 Option Strict 和 Option Explicit On。

在每个代码文件的顶部键入以下内容:

Option Strict On
Option Explicit On

或者,在项目设置中,您可以在“编译”选项卡中将其设置为项目范围。

In Visual Studio, turn Option Strict and Option Explicit On.

Type this at the top of each code file:

Option Strict On
Option Explicit On

Or, in your project settings, you can set it project-wide in the Compile Tab.

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