如何避免 Microsoft C26451(算术溢出)警告
Posted
技术标签:
【中文标题】如何避免 Microsoft C26451(算术溢出)警告【英文标题】:How to avoid Microsoft C26451 (arithmetic overflow) warning 【发布时间】:2021-04-27 05:59:42 【问题描述】:在我的示例中,如何针对 Microsoft C26451(算术溢出)警告进行防御性编码?我觉得这应该很容易解决。好郁闷!
// Linear interpolation
// target - the target point, 0.0 - 1.0
// x... - two values X1 X2
inline static double Linear(float target, double x1, double x2)
return (target * x2) + ((1.0 - (double)target) * x1);
我通读了Arithmetic overflow: Using operator '*' on a 4 byte value then casting the result to a 8 byte value,但似乎无法修复我的 C26451 警告:“算术溢出:在 4 字节值上使用运算符'-',然后将结果转换为 8 字节值。将值转换为在调用运算符“-”之前使用更宽的类型以避免溢出 (io.2)。
我该怎么做才能消除警告?
关于编译错误的 Microsoft 文档并没有真正帮助。 https://docs.microsoft.com/en-us/cpp/code-quality/c26451
【问题讨论】:
您使用哪些编译器选项来获得该警告?我在 VS2019 中用/W4
不明白。旁注:您不需要在 double
中的演员表:(1.0 - (double)target)
。无论如何,它都会被隐式转换为double
。
@TedLyngmo VS2019 但我使用的 Visual Studio 2015 工具集 (v140) 应该与使用 VS2015 相同。
我只提到了VS2019,因为您标记了问题VS2017。不过,您使用的是哪些编译器选项?仅供参考:target
将(应该)在两个地方都被隐式转换为double
,所以我想知道它为什么会抱怨。如果你像这样把target
当作double
,它还会抱怨吗? inline static double Linear(double target, double x1, double x2) return (target * x2) + ((1.0 - target) * x1);
如果我没记错的话,这是一个 Intellisense 警告,而不是编译警告。该软件通常需要一段时间才能注意到您已解决问题
哦,如果是智能感知(而不是编译器)发出警告,就像@IWonderWhatThisAPIDoes 提到的那样——请忽略它。不过,我仍然会尝试将target
作为double
(并跳过演员表)。
【参考方案1】:
编译器警告没有意义,较新的 Visual Studio 版本不会给出相同的警告。我只会为这一行禁用它:
inline static double Linear(double target, double x1, double x2)
#pragma warning( push )
#pragma warning( disable : 26451 )
return (target * x2) + ((1.0 - target) * x1);
#pragma warning( pop )
【讨论】:
这是一种压缩问题的优雅方式,目的是打包代码以传递给其他人。谢谢!以上是关于如何避免 Microsoft C26451(算术溢出)警告的主要内容,如果未能解决你的问题,请参考以下文章
C26451 算术溢出访问 CStringArray 中的项目
Swift中自定义uitabbar溢出项的TableViewController
如何将构建限制为仅支持 EN“Microsoft.Expression.Interactions.resources.dll”,并避免 DE、KR、FR、ES 等...?