自动装箱与拆箱

来源:互联网 发布:怎么申请淘宝网店 编辑:程序博客网 时间:2024/06/12 14:59
/*自动装箱与拆箱*/


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;
}


}
0 0