Auto Boxing vs static numbers

2019-06-27 12:22发布

Is it valuable for using Integer i = NumberUtils.INTEGER_ONE instead of Integer i = 1? I don't know what happen behind auto boxing.

Thanks

2条回答
Root(大扎)
2楼-- · 2019-06-27 12:55

Basically it will be compiled into:

Integer i = Integer.valueOf(NumberUtils.INTEGER_ONE);

assuming INTEGER_ONE is declared as an int.

At execution time, assuming INTEGER_ONE has the value 1, that will actually return a reference to the same object each time, guaranteed by the Java Language Specification, because it's in the range -128 to 127. Values outside that range can return references to the same object, but don't have to.

查看更多
混吃等死
3楼-- · 2019-06-27 13:03

Many wrappers and utility classes in java have cached pools. Integer uses an internally cached static array of 'Integer' references to dish out when the valueOf() method is invoked. Strings also have a similar pool.

If however you do something like Integer i = 128, that will begin to impact performance since autoboxing will kick in for uncached integers (Not that it does not kick in for cached integers). Unlike the case where cached integers were returned, this statement creates a new object. Object creation is expensive and drags down performance.

[EDIT]

Clarified answer

查看更多
登录 后发表回答