mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
32 lines
983 B
HTML
32 lines
983 B
HTML
<html>
|
|
<body>
|
|
Reports method calls in the condition part of a
|
|
loop statement. In highly resource constrained environments, such calls may
|
|
have adverse performance implications.
|
|
<p>
|
|
Applying the results of this inspection without consideration might have negative effects on code clarity and design.
|
|
This inspection is intended for Java ME and other highly resource constrained environments.
|
|
</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
String s = "example";
|
|
for (int i = 0; i < s.length(); i++) {
|
|
System.out.println(s.charAt(i));
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
String s = "example";
|
|
int length = s.length();
|
|
for (int i = 0; i < length; i++) {
|
|
System.out.println(s.charAt(i));
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
Use the option to ignore calls to common Java iteration methods like <code>Iterator.hasNext()</code>
|
|
and known methods with side-effects like <code>Atomic*.compareAndSet</code>.
|
|
</p>
|
|
|
|
</body>
|
|
</html> |