Do not use a string with only one character

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

Metadata

ID: java-best-practices/indexof-char

Language: Java

Severity: Warning

Category: Performance

Description

When using indexOf with only one character, use a character and not a string as it executes faster.

Non-Compliant Code Examples

class Main {
    public static void main(String[] args) {
        int pos = s.indexOf("f"); 
    }
}

Compliant Code Examples

class Main {
    public static void main(String[] args) {
        int pos = s.indexOf('f'); 
    }
}
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