When this code finishes, what is the result of myObject?

object myObject = "something";
object yourObject = null;

myObject = null ?? yourObject;
link|improve this question

5  
You could always try it out & see, rather than asking here... What would you expect the result to be? – thecoop Oct 19 '10 at 18:00
The answer is null. – leppie Oct 19 '10 at 18:01
3  
I think it's an interesting question, even though the answer is obvious to more experienced developers. At any rate, Stack Overflow exists to answer the difficult as well as the trivial, I think (non-redundant) simple questions should be encouraged. – Anthony Pegram Oct 19 '10 at 18:07
@leppie Now, do you mean null as in 'null' or null as 'undefined'? ;-) – pst Oct 19 '10 at 18:09
1  
@pst, I looked at that post and did not find the answer, buried as it may be, in the definitions of the English term 'coalesce'. – Brad Oct 19 '10 at 18:11
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

myObject will be null

This gets translated to -

if (null == null)
    myObject = yourObject;
else
    myObject = null;
link|improve this answer
feedback

The coalesce operator translates to this:

x ?? y
x != null ? x : y

Therefore what you have:

myObject = null != null ? null : yourObject;

Which is actually pretty pointless since null will always be null.

link|improve this answer
of course my example was very simplistic and non-realistic. Thank you for your explanation. – Brad Oct 19 '10 at 18:09
Yeah I realize that. The point of the coalesce operator is to provide a value to use when something is null...more than likely so you don't get a null reference exception if you try and use the value. An example: someString = (someString ?? "").ToLower(); – Dismissile Oct 19 '10 at 18:15
It is also useful for assigning nullable types to non-nullable types. Example: int? x = 1; int y = x ?? -1; If you tried to assign y to x without using ?? or doing x.Value you would get an error. And if you did x.Value and the value is null then you are also in trouble. – Dismissile Oct 19 '10 at 18:18
feedback

Just for kicks, here is a small table:

A    ?? B    -> R
---------------------
a    ?? any  -> a; where a is not-null
null ?? b    -> b; for any b
null ?? null -> null; implied from previous

And since ?? is just a (surprise!) right-associated infix operator, x ?? y ?? z --> x ?? (y ?? z). Like && and ||, ?? is also a short-circuiting operation.

...from ?? Operator (C# Reference):

It (??) returns the left-hand operand if it is not null; otherwise it returns the right operand.

...from the C# 3.0 Language reference:

A null coalescing expression of the form a ?? b requires a to be of a nullable type or reference type. If a is non-null, the result of a ?? b is a; otherwise, the result is b. The operation evaluates b only if a is null.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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