《深入理解Java虚拟机》-----第13章 线程安全与锁优化 (2)

/** *The value of the<code>Integer</code>. *@serial */ private final int value; /** *Constructs a newly allocated<code>Integer</code>object that *represents the specified<code>int</code>value. * *@param value the value to be represented by the *<code>Integer</code>object. */ public Integer(int value){ this.value=value; }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgjsjx.html