标签: java constructor
包装类和其他类一样对吗? 要创建一个对象,我们需要使用new关键字,然后使用Java中的构造函数调用。那么为什么在包装类对象的情况下我们不需要新的关键字和构造函数调用?
Integer j=50; // an object of Integer is created with value 50 but there is no need of new keyword!