JavaScript is not currently enabled, but is required for full CodeSonar manual search and browse functionality.
If you are viewing this file in your hub's Web GUI, enable JavaScript in your browser: you will also need it for GUI functionality.
If you opened this file directly from disk, your browser may be directly suppressing JavaScript functionality: certain browsers perform this suppression on local files (but not files delivered by web servers) for security reasons.
| CodeSonar® 9.0p0 Hot Tips | CONFIDENTIAL | CodeSecure Inc |
The result of an integer computation that might overflow is cast into long, with possible loss of precision.
Floating point operations are by nature approximated. This can introduce bugs when precise, mathematical properties are expected from inherently imprecise floating point computations. Moreover, computations that might lose precision or overflow, whose result is stored in a larger type, are suspicious since, by computing on the larger type from the beginning, one could avoid approximations and overflows.
| クラス名 | Cast: int Computation to long (C#) | |||
|---|---|---|---|---|
| 日本語クラス名 | Cast: int Computation to long (C#) | |||
| クラス分類 | 信頼性 (reliability) | |||
| ニーモニック | CSHARP.ARITH.OFLOW | |||
| カテゴリー |
|
|||
| 対応言語 | C# で利用可能です。 |
|||
| 有効/無効設定 | このワーニングクラスのチェックはデフォルトで有効になっています。チェックを無効にするにはプロジェクト設定ファイル
(configuration file)に以下の WARNING_FILTER ルールを追加してください。
WARNING_FILTER += discard class="Cast: int Computation to long (C#)" |
using System;
namespace DocumentationExamples
{
public class Approximation
{
public static void Main(string[] args)
{
for (double d = 0.0; d != 5.0; d += 0.001) // Floating Point Equality (C#) warning issued here
// due to floating point approximations, d != 5.0 will always be true and the loop will never terminate
Console.WriteLine(d);
int days = int.Parse(args[0]);
long milliseconds = days * 24 * 60 * 60 * 1000; // Cast: int Computation to long (C#) warning issued here
// - multiplication is performed on integers; only the result is cast to long
Console.WriteLine("Inside %d days there are %d milliseconds", days, milliseconds);
}
}
}
To resolve the Floating Point Equality (C#) warning, replace d != 5.0 with d < 5.0 or replace floating point computations with (stable and more efficient) integral computations, as follows:
for (int d = 0; d != 5000; d++) Console.WriteLine(d / 1000.0);
To resolve the Cast: int Computation to long (C#) warning, perform the multiplication as an operation on long. Note that overflow can still occur if days is sufficiently large.
int days = Convert.ToInt32(args[0]);
long milliseconds = days * 24L * 60 * 60 * 1000;
Console.WriteLine("Inside %d days there are %d milliseconds", days, milliseconds);
If a large type for the result of a computation is desired, compute from the beginning on that type instead of applying a type conversion at the end of the computation.
設定ファイルの以下のパラメータがこのワーニングクラスのチェックに影響します。