“So überprüfen Sie, ob das Parsen in Ganzzahl in Java möglich ist” Code-Antworten

Java prüft, ob es in der Lage ist, int zu analysieren

public static boolean isParsable(String input) {
    try {
        Integer.parseInt(input);
        return true;
    } catch (final NumberFormatException e) {
        return false;
    }
}
Zwazel

So überprüfen Sie, ob das Parsen in Ganzzahl in Java möglich ist

// if parse is possible then it will do it otherwise compiler 
// will throw exceptions and it is a bad practice to catch all exceptions
// in this case only NumberFormatException happens
public boolean isInteger(String string) {
    try {
        Integer.valueOf(string);
        // Integer.parse(string) /// it can also be used
        return true;
    } catch (NumberFormatException e) {
        return false;
    }
}
rng70

Ähnliche Antworten wie “So überprüfen Sie, ob das Parsen in Ganzzahl in Java möglich ist”

Fragen ähnlich wie “So überprüfen Sie, ob das Parsen in Ganzzahl in Java möglich ist”

Weitere verwandte Antworten zu “So überprüfen Sie, ob das Parsen in Ganzzahl in Java möglich ist” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen