Simplify for loops for while loops

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: java-code-style/for-loop-should-be-while-loop

Language: Java

Severity: Notice

Category: Code Style

Description

This rule identifies instances where simplifying for loops is possible which can make these loops more concise.

Non-Compliant Code Examples

// No init or update nodes; can be rewritten `while (condition)`
public class Foo {
    void bar() {
        for(;true;) true;

        for(; true ;){
        	System.out.println("bar");
        }
        
        for(; i < 42 ;) true;
        
        for(;;);
    }
}

Compliant Code Examples

public class Foo {
    void bar() {
        for(int i = 0; i < 42; i++);
    }
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis