包装类的转换
int score1=58;
Integer score2=new Integer(score1);
double score3=score2.doubleValue();
float score4=score3.floatValue();
int score5=score4.intValue();
为什么不能将double包装类转换成float包装类,float也不能转换成int包装类
int score1=58;
Integer score2=new Integer(score1);
double score3=score2.doubleValue();
float score4=score3.floatValue();
int score5=score4.intValue();
为什么不能将double包装类转换成float包装类,float也不能转换成int包装类
2017-05-01
举报