InterviewSolution
| 1. |
Define Autoboxing With An Example? |
|
Answer» The automatic conversion of primitive int type into a wrapper class OBJECT is called AUTOBOXING. It does not require to type cast the int VALUE. The modification of primitive wrapper objects is done directly. The following example illustrates autoboxing: int NUMBER; Integer intObject; number = 1; intObject = 2; number = intObject; intObject = number; The automatic conversion of primitive int type into a wrapper class object is called autoboxing. It does not require to type cast the int value. The modification of primitive wrapper objects is done directly. The following example illustrates autoboxing: int number; Integer intObject; number = 1; intObject = 2; number = intObject; intObject = number; |
|