All Downloads are FREE. Search and download functionalities are using the official Maven repository.

errorprone.bugpattern.FloatingPointLiteralPrecision.md Maven / Gradle / Ivy

The newest version!
`double` and `float` literals that can't be precisely represented should be
avoided.

Example:

```java
double d = 1.9999999999999999999999999999999;
System.err.println(d); // prints 2.0
```




© 2015 - 2025 Weber Informatics LLC | Privacy Policy