直接创建其他类型的包装类对象不可以吗?为什么非得创建Interger包装类,再转换成其他类型的
int score1 = 86;
Integer score2=new Integer(score1);
score2.floatValue();
Float long1=new Float(score2);
int score1 = 86;
Integer score2=new Integer(score1);
score2.floatValue();
Float long1=new Float(score2);
2019-08-30
举报