vote up 0 vote down star

What's the most idiomatic way in Java to verify that a cast from long to int did not lose any information?

This is my current implementation:

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;
}
flag
4  
I'm curious as to why you would have to do this. If you have a long, why can't you just work with a long? That way, you'll never have to worry about this. – Thomas Owens Oct 19 at 20:12
Two code paths. One is legacy and needs ints. That legacy data SHOULD all fit in an int, but I want to throw an exception if that assumption is violated. The other code path will use longs and won't need the cast. – Brigham Oct 19 at 20:21

3 Answers

vote up 2 vote down

I claim that the obvious way to see whether casting a value changed the value would be to cast and check the result. I would, however, remove the unnecessary cast when comparing. I'm also not too keen on one letter variable names (exception x and y, but not when they mean row and column (sometimes respectively)).

public static int intValue(long value) {
    int valueInt = (int)value;
    if (valueInt != value) {
        throw new IllegalArgumentException(
            "The long value "+value+" is not within range of the int type"
        );
    }
    return valueInt;
}

However, really I would want to avoid this conversion if at all possible. Obviously sometimes it's not possible, but in those cases IllegalArgumentException is almost certainly the wrong exception to be throwing as far as client code is concerned.

link|flag
vote up 0 vote down

Java integer types are represented as signed. With an input between 231 and 232 (or -231 and -232) the cast would succeed but your test would fail.

What to check for is whether all of the high bits of the long are all the same:

public static final long LONG_HIGH_BITS = 0xFFFFFFFF80000000L;
public static int safeLongToInt(long l) {
    if ((l & LONG_HIGH_BITS) == 0 || (l & LONG_HIGH_BITS) == LONG_HIGH_BITS) {
        return (int) l;
    } else {
        throw new IllegalArgumentException("...");
    }
}
link|flag
I don't see what signedness has to do with it. Could you give an example which doesn't lose information but does fail the test? 2^31 would be cast to Integer.MIN_VALUE (i.e. -2^31) so information has been lost. – Jon Skeet Oct 19 at 20:24
@Jon Skeet: Maybe me and the OP are talking past each other. (int) 0xFFFFFFFF and (long) 0xFFFFFFFFL have different values, but they both contain the same "information", and it is almost trivial to extract the original long value from the int. – mobrule Oct 19 at 20:47
How can you extract the original long value from the int, when the long could have been -1 to start with, instead of 0xFFFFFFFF? – Jon Skeet Oct 19 at 20:55
Sorry if I"m not clear. I'm saying that if the long and the int both contain the same 32 bits of information, and if the 32nd bit is set, then the int value is different from the long value, but that it is easy to get the long value. – mobrule Oct 19 at 21:22
vote up 10 vote down

I think I'd do it as simply as:

public static int safeLongToInt(long l) {
    if (l < Integer.MIN_VALUE || l > Integer.MAX_VALUE) {
        throw new IllegalArgumentException
            (l + " cannot be cast to int without changing its value.")
    }
    return (int) l;
}

I think that expresses the intent more clearly than the repeated casting... but it's somewhat subjective.

Note of potential interest - in C# it would just be:

return checked ((int) l);
link|flag
3  
Aren't your > and < reversed? – Thomas Owens Oct 19 at 20:14
No, my values were ;) (I was already editing...) – Jon Skeet Oct 19 at 20:15
Thanks. This does express my intent more clearly. – Brigham Oct 19 at 20:22
1  
I'd always do the range check as (!(Integer.MIN_VALUE <= l && l <= Integer.MAX_VALUE)). I find it difficult to get my head around other ways of doing it. Pity Java does not have unless. – Tom Hawtin - tackline Oct 19 at 20:24
+1. This falls exactly under the "exceptions should be used for exceptional conditions" rule. – Adam Rosenfield Oct 19 at 20:24
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.