Was ist die idiomatischste Methode in Java, um zu überprüfen, ob eine Besetzung von long
bis int
keine Informationen verliert?
Dies ist meine aktuelle Implementierung:
public static int safeLongToInt(long l) {
int i = (int)l;
if ((long)i != l) {
throw new IllegalArgumentException(l + " cannot be cast to int without changing its value.");
}
return i;
}