Why this works:
Object prova = 9.2;
System.out.println(prova);
Double prova2 = (Double) prova;
System.out.println(prova2);
And this doesn't?
Object prova = 9.2;
System.out.println(prova);
Float prova2 = (Float) prova;
System.out.println(prova2);
I lost 1 hour in my javaa android application caause of this thing so i ha to cast it in a double and than the double in a flout or i had an exception
ClassCastException), and then look at the inheritance hierarchy forFloatandDouble, the answer should be apparent. – Anon May 12 '11 at 16:09