Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question
7  
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 '09 at 20:12
11  
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 '09 at 20:21
33  
I love how people always question why you want to do what you want to do. If everyone explained their full use case in these questions, no one would be able to read them, much less answer them. – B T Jan 30 '12 at 21:59
2  
B T - I really hate asking any questions online for this reason. If you want to help, that's great, but don't play 20 questions and force them justify themselves. – Mason240 Feb 23 '12 at 20:18
8  
Disagree with B T and Mason240 here: it's often valuable to show the questioner another solution that they haven't thought of. Flagging up code smells is a useful service. It's a long way from 'I'm curious as to why...' to 'force them to justify themselves'. – Tommy Herbert May 10 '12 at 15:24
show 1 more comment

7 Answers

up vote 114 down vote accepted

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);
share|improve this answer
6  
Aren't your > and < reversed? – Thomas Owens Oct 19 '09 at 20:14
2  
No, my values were ;) (I was already editing...) – Jon Skeet Oct 19 '09 at 20:15
Thanks. This does express my intent more clearly. – Brigham Oct 19 '09 at 20:22
2  
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 '09 at 20:24
1  
+1. This falls exactly under the "exceptions should be used for exceptional conditions" rule. – Adam Rosenfield Oct 19 '09 at 20:24
show 6 more comments

With Google Guava's Ints class:

public static int safeLongToInt(long l) {
    return Ints.checkedCast(l);
}
share|improve this answer
Guava's Ints.checkedCast does exactly what OP does, incidentally – Partly Cloudy Feb 16 at 0:31

With BigDecimal:

long aLong = ...;
int anInt = new BigDecimal(aLong).intValueExact(); // throws ArithmeticException
                                                   // if outside bounds
share|improve this answer
I like this one, anyone has something against this solution? – Rui Marques Apr 22 at 12:05

here is a solution, in case you don't care about value in case it is bigger then needed ;)

public static int safeLongToInt(long l) {
    return (int) Math.max(Math.min(Integer.MAX_VALUE, l), Integer.MIN_VALUE);
}
share|improve this answer
This does not handle cases where value is negative and too low. – Petr Gladkikh Jun 1 '12 at 3:39

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.

share|improve this answer

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("...");
    }
}
share|improve this answer
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 '09 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. – mob Oct 19 '09 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 '09 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. – mob Oct 19 '09 at 21:22
@mob what is this in reference to? OP's code correctly reports that long values > 2^{31} cannot be casted to ints – Partly Cloudy Feb 16 at 0:33
show 1 more comment

One other solution can be:

public int longToInt(Long longVariable)
{
    try { 
            return Integer.valueOf(longVariable.toString()); 
        } catch(IllegalArgumentException e) { 
               Log.e(e.printstackstrace()); 
        }
}

I have tried this for cases where the client is doing a POST and the server DB understands only Integers while the client has a Long.

share|improve this answer
6  
That fails the performance smell test. Convert number to strings then back???? – B T Jan 30 '12 at 22:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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