Why the typecasting of Wrapper Float does not works in java for Wrapper Integer type.
public class Conversion {
public static void main(String[] args) {
Integer i = 234;
Float b = (Float)i;
System.out.println(b);
}
}