Do not use a string with only one character

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

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