//声明一个Integer对象
Integer num = 10;
//以上的声明就是用到了自动的装箱:解析为
Integer num = new Integer(10);
其中:可否理解为在Integer类中存在一个构造函数:
int a;
Integer (int a){
this.a=a
}
把10存在构造函数里面了,
然后Integer按照以上理解来使用
迷茫2017-04-17 15:48:27
Haha, this is an interesting question. I have to use the java source code to prove your answer!
Of course, you are right