vote up 2 vote down star

I understand that boxing and unboxing is about casting (real type to object... object to real type). But I do not understand what the MSDN say about it with the Nullable. Here is the text I do not understand:

When a nullable type is boxed, the common language runtime automatically boxes the underlying value of the Nullable object, not the Nullable object itself. That is, if the HasValue property is true, the contents of the Value property is boxed. When the underlying value of a nullable type is unboxed, the common language runtime creates a new Nullable structure initialized to the underlying value. Source

When you change your object to a real type, the real type variable that was nullable will be the type of object? I do not get it?

flag
Great minds think alike. (cf @Jon and @Marc) – harpo Dec 17 '08 at 15:02
Great minds need to take a holiday from SO :) – mackenir Dec 17 '08 at 15:08

3 Answers

vote up 4 vote down check

What it's saying is that if you do:

int? x = 5;
object y = x; // Boxing

You end up with a boxed int, not a boxed Nullable<int>. Similarly if you do:

int? x = null; // Same as new Nullable<int>() - HasValue = false;
object y = x; // Boxing

Then y ends up as a null reference.

link|flag
lol! pure coincidence, but scary none-the-less – Marc Gravell Dec 17 '08 at 19:50
vote up 3 vote down

What that means is that if you do:

int? i = 5;
object o = i;

it is an "int" (5) that is boxed, not an "int?" (5). If x had been null (!HasValue), o would be null, not a box around an empty "int?"

Then when you unbox:

i = (int?)o;

If o is null, i becomes an empty "int?"; otherwise, the 5 is unboxed and used to create an "new int?(5)".

Basically, you shouldn't (short of cheating) be able to get a boxed nullable<T> directly - only a boxed T

link|flag
So, how come we both picked 5 as our example value? Hmm... – Jon Skeet Dec 17 '08 at 15:10
How come it's not 42? – Mehrdad Afshari Dec 17 '08 at 15:23
" If x had been null " should be " If i had been null "... x variable is on JonSkeet example... you used i. – Daok Dec 17 '08 at 15:31
Ha good point Daok. – mackenir Dec 17 '08 at 15:46
Mind you, Jon posted his answer half-finished so he'd get oldest answer. So they're even. – mackenir Dec 17 '08 at 15:47
show 2 more comments
vote up 2 vote down

If a Nullable<T> is null, it'll be boxed as a null reference and will not behave as a boxed value type with HasValue = true.

In fact, to implement this feature, it was required that CLR intrinsically support Nullable<T> type and treat it differently. Developers can not write their own type that works like Nullable<T>.

It's worth noting that this was one of the late .NET 2.0 features. In early betas, Nullable<T> behaved just like a normal structure. In final release, it was changed to box to null reference. This change was specifically breaking for SQL Server CLR team and they had to change some fundamental stuff for it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.