/*自动装箱与拆箱*/
public class WrapperDemo1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Integer i = 3;
int x = i;
Float j = 78.9f;
float y = j;
}
}
public class WrapperDemo1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Integer i = 3;
int x = i;
Float j = 78.9f;
float y = j;
}
}