第一个构造函数,每次必然创建一个新的Integer对象。对于第二个valueOf方法,API文档里说得很清楚了,对-128到+127之间的数(有时甚至还包括超出这个范围的数),会缓存起来,下次再通过valueOf创建这个数的Integer对象时,不会创建新对象,而是直接返回缓存的对象地址,也就是可以节约内存开销并提高运行效率( this method is likely to yield significantly better space and time performance by caching frequently requested values. This method will always cache values in the range -128 to 127, inclusive, and may cache other values outside of this range.)
|