| 1. |
Differentiate Between Boxing And Unboxing.? |
|
Answer» When a value type is CONVERTED to an object type, the process is known as boxing; whereas, when an object type is converted to a value type, the process is known as unboxing. Boxing and unboxing enable value types to be treated as objects. Boxing a value type packages it INSIDE an instance of the Object reference type. This allows the value type to be stored on the garbage collected heap. Unboxing extracts the value type from the object. In this example, the INTEGER VARIABLE i is boxed and ASSIGNED to object obj. Example: int i = 123; When a value type is converted to an object type, the process is known as boxing; whereas, when an object type is converted to a value type, the process is known as unboxing. Boxing and unboxing enable value types to be treated as objects. Boxing a value type packages it inside an instance of the Object reference type. This allows the value type to be stored on the garbage collected heap. Unboxing extracts the value type from the object. In this example, the integer variable i is boxed and assigned to object obj. Example: int i = 123; |
|