Why do we need boxing and unboxing in C#?
I know what boxing and unboxing is, but I can't comprehend the real use of it. Why and where should I use it?
short s=25;
object objshort=s; //Boxing
short anothershort=(short)objshort; //Unboxing
|
To have a unified type system and allow value types to have a completely different representation of their underlying data from the way that reference types represent their underlying data (e.g., an Think of it like this. You have a variable So, if you don't care about having a unified type system (i.e., reference types and value types have very different representations and you don't want a common way to "represent" the two) then you don't need boxing. If you don't care about having
For example, the old collection type Now, in the days of generics you don't really need this and can generally go merrily along without thinking about the issue. But there are a few caveats to be aware of: This is correct:
This is not:
Instead you must do this:
First we have to explicitly unbox the What is the result of the following:
Think about it for a second before going on to the next sentence. If you said
will also print Better to say:
which will then, thankfully, print One last subtlety:
What is the output? It depends! If |
|||||||||||
|
|
In the .NET framework, there are two species of types--value types and reference types. This is relatively common in OO languages. One of the important features of object oriented languages is the ability to handle instances in a type-agnostic manner. This is referred to as polymorphism. Since we want to take advantage of polymorphism, but we have two different species of types, there has to be some way to bring them together so we can handle one or the other the same way. Now, back in the olden days (1.0 of Microsoft.NET), there weren't this newfangled generics hullabaloo. You couldn't write a method that had a single argument that could service a value type and a reference type. That's a violation of polymorphism. So boxing was adopted as a means to coerce a value type into an object. If this wasn't possible, the framework would be littered with methods and classes whose only purpose was to accept the other species of type. Not only that, but since value types don't truly share a common type ancestor, you'd have to have a different method overload for each value type (bit, byte, int16, int32, etc etc etc). Boxing prevented this from happening. And that's why the British celebrate Boxing Day. |
|||||||||
|
|
Boxing isn't really something that you use - it is something the runtime uses so that you can handle reference and value types in the same way when necessary. For example, if you used an ArrayList to hold a list of integers, the integers got boxed to fit in the object-type slots in the ArrayList. Using generic collections now, this pretty much goes away. If you create a |
|||||||
|
|
Boxing and Unboxing are specifically used to treat value-type objects as reference-type; moving their actual value to the managed heap and accessing their value by reference. Without boxing and unboxing you could never pass value-types by reference; and that means you could not pass value-types as instances of Object. |
|||
|
|
|
The last place I had to unbox something was when writing some code that retrieved some data from a database (I wasn't using LINQ to SQL, just plain old ADO.NET):
Basically, if you're working with older APIs before generics, you'll encounter boxing. Other than that, it isn't that common. |
||||
|
|
|
Boxing is required, when we have a function that needs object as a parameter, but we have different value types that need to be passed, in that case we need to first convert value types to object data types before passing it to the function. I don't think that is true, try this instead:
That runs just fine, I didn't use boxing/unboxing. (Unless the compiler does that behind the scenes?) |
||||
|
|
|
In .net, every instance of Object, or any type derived therefrom, includes a data structure which contains information about its type. "Real" value types in .net do not contain any such information. To allow data in value types to be manipulated by routines that expect to receive types derived from object, the system automatically defines for each value type a corresponding class type with the same members and fields. Boxing creates a new instances of this class type, copying the fields from a value type instance. Unboxing copies the fields from an instance of the class type to an instance of the value type. All of the class types which are created from value types are derived from the ironically named class ValueType (which, despite its name, is actually a reference type). |
|||
|
|
|
When a method only takes a reference type as a parameter (say a generic method constrained to be a class via the This is also true for any methods that take |
|||
|
|