Inspectopedia Help

Call math rounding with 'int' argument

Reports calls to round(), ceil(), floor(), rint() methods for Math and StrictMath with int as the argument.

These methods could be called in case the argument is expected to be long or double, and it may have unexpected results.

The inspection provides a fix that simplify such expressions (except round) to cast to double.

Example:

int i = 2; double d1 = Math.floor(i);

After the quick-fix is applied:

int i = 2; double d1 = i;

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

MathRoundingWithIntArgument
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Java | Probable bugs

New in 2023.1

Availability

By default bundled with

IntelliJ IDEA 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin

Java, 241.18072

Last modified: 18 June 2024