search

Home  >  Q&A  >  body text

java中Integer及自动装箱

//声明一个Integer对象
Integer num = 10;
//以上的声明就是用到了自动的装箱:解析为
Integer num = new Integer(10);
其中:可否理解为在Integer类中存在一个构造函数:

int a;
Integer (int a){
      this.a=a
}
把10存在构造函数里面了,
然后Integer按照以上理解来使用
高洛峰高洛峰2788 days ago625

reply all(1)I'll reply

  • 迷茫

    迷茫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

    reply
    0
  • Cancelreply