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

15 lines
416 B
HTML

<html>
<body>
Reports binary, conditional, or <code>instanceof</code> expressions that consist of different operators
without parentheses. Such expressions can be less readable due to different precedence rules of operators.
<p>Example:</p>
<pre><code>
int n = 3 + 9 * 8 + 1;
</code></pre>
<p>After quick-fix is applied:</p>
<pre><code>
int n = 3 + (9 * 8) + 1;
</code></pre>
<!-- tooltip end -->
</body>
</html>