int score1=58;
Integer score2=new Integer(score1);
double score3=score2.doubleValue();
float score4=score3.floatValue();
int score5=score4.intValue();
为什么不能将double包装类转换成float包装类,float也不能转换成int包装类
对象.方法名 调用方法,你这个score2是int类型对象,不是double类型的,无法使用doubleValue()方法
score2是包装类,转化为double类赋值给score3,score3依旧是基本类,不具备包装类方法的调用
应该不行吧,要转换的话只能转换到对应的包装类在转