Files
openide/java/java-impl/resources/inspectionDescriptions/FloatingPointEquality.html
2025-02-05 04:43:28 +00:00

14 lines
465 B
HTML

<html>
<body>
Reports floating-point values that are being compared using the <code>==</code> or <code>!=</code> operator.
<p>Floating-point values are inherently inaccurate, and comparing them for exact equality is seldom the desired semantics.</p>
<p>This inspection ignores comparisons with zero and infinity literals.</p>
<p><b>Example:</b>
<pre><code>
void m(double d1, double d2) {
if (d1 == d2) {}
}
</code></pre>
<!-- tooltip end -->
</body>
</html>