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

I am getting the runtime error Exception in thread "main" java.lang.ClassCastException: m.compiler.datatypes.Int cannot be cast to java.lang.Integer

Here are the code snippets:

public abstract class DataType<E> {
protected E value;
...
}

And here the class Int:

public class Int extends DataType<Integer> {

@Override
public DataType<Integer> compare(DataType<Integer> other) {
    if(value > other.value) //here the exception is thrown
        return new Int(1);
    if (value < other.value)
        return new Int(-1);
    return new Int(0);
}

}

actual call:

        if(lValue instanceof Int) {
            Int lInt = (Int) lValue;
            Int result = (Int) lInt.compare(rInt);

if i print the values inside compare the values are right, but even if i check with

other.value.getClass()

i get the exception. compiler has no error and no warnings.

share|improve this question
How are you calling it? – Bohemian Aug 17 '11 at 10:34
Are you sure you don't get any type-safety warnings? Seems the generic type does not match up. – Thilo Aug 17 '11 at 10:37
if(lValue instanceof Int) { Int lInt = (Int) lValue; Int result = (Int) lInt.compare(rInt); – Markus Mannel Aug 17 '11 at 10:38
@Thilo No, I really don't get a warning or an error. I even check every single type of the generics I pass around. I do not understand why value becomes an Int as soon as I use it but before it is an Integer? – Markus Mannel Aug 17 '11 at 10:44
It sounds like the problem is with rInt - how is rInt being initialized? – Avi Aug 17 '11 at 10:45
show 5 more comments

1 Answer

up vote 1 down vote accepted

At some point, you must have assigned an Int to value... And there should have been a warning about that. Can you make value final?

share|improve this answer

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.