Quelle est la manière la plus idiomatique en Java pour vérifier qu'une distribution de long
à int
ne perd aucune information?
Voici ma mise en œuvre actuelle:
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;
}