自动装箱拆箱

//before autoboxing
Integer iObject = Integer.valueOf(3);
Int iPrimitive = iObject.intValue()

//after java5
Integer iObject = 3; //autobxing - primitive to wrapper conversion
int iPrimitive = iObject; //unboxing - object to primitive conversion

发生时机:

  1. 方法调用时;
  2. 赋值时。

results matching ""

    No results matching ""