Can anyone confirm if this is true?
Java will turn a long % int into a long value. However it can never be greater than the modulus to it is always safe to cast it to an int.
long a =
int b =
int c = (int) (a % b); // cast is always safe.
Similarly a long % short will always be safe to cast to a short.
If true, does any one know why Java has a longer type for % than needed?
Additionally, there is a similar case for long & int (if you ignore sign extension)
long % long, perhaps? – Marc B Aug 31 '11 at 19:12bis1, thena % bis always0. – Henning Makholm Aug 31 '11 at 19:17x % 1is always0and fits inside andint;) – Peter Lawrey Aug 31 '11 at 19:19