/removeintchecks
打开或关闭整数操作的溢出错误检查。
/removeintchecks[+ | -]
参数
术语 |
定义 |
+ | - |
可选。 /removeintchecks- 选项导致编译器检查所有计算整数溢出检查。 默认值为 /removeintchecks-。 指定 /removeintchecks 或 /removeintchecks+ 可禁止错误检查,并可以让整数计算速度更快。 但是,如果没有进行错误检查而且数据类型容量被超出,那么将会存储错误的结果,而不会显示错误信息。 |
在 Visual Studio 集成开发环境中设置 /removeintchecks |
|
示例
下面的代码编译 Test.vb 并关闭整数溢出错误检查。
vbc /removeintchecks+ test.vb