Why does the is operator return false when given null?

C#

C# Problem Overview


It seems to me that the is operator is a bit inconsistent.

bool Test()
{
    // Returns false, but should return true.
    return null is string;
}

One expects that the null value belongs to any reference (or nullable) type. And indeed, the C# language specification says something which supports this hypothesis, for example (6.1.6 Implicit reference conversions): > The implicit reference conversions are:
> ...
> • From the null literal to any reference-type.

The description (7.10.10 The is operator) of the is operator starts by saying that the expression (E is T) will result in true when a reference conversion from E to T exists, but then the authors go on by explicitly excluding the case when E is the null literal or has a null value.

Why do they do that? To me it seems counterintuitive.

C# Solutions


Solution 1 - C#

This question was the subject of my blog on May 30th 2013. Thanks for the great question!


You're staring at an empty driveway.

Someone asks you "can your driveway hold a Honda Civic?"

Yes. Yes it can.

Someone points you at a second driveway. It is also empty. They ask "Can the current contents of my driveway fit in your driveway?"

Yes, obviously. Both driveways are empty! So clearly the contents of one can fit in the other, because there are no contents of either in the first place.

Someone asks you "Does your driveway contain a Honda Civic?"

No, it does not.

You're thinking that the is operator answers the second question: given this value, does it fit in a variable of that type? Does a null reference fit into a variable of this type? Yes it does.

That is not the question that the is operator answers. The question that the is operator answers is the third question. y is X does not ask "is y a legal value of a variable of type X?" It asks "Is y a valid reference to an object of type X?" Since a null reference is not a valid reference to any object of any type, the answer is "no". That driveway is empty; it doesn't contain a Honda Civic.

Another way to look at it is that y is X answers the question "if I said y as X, would I get a non-null result? If y is null, clearly the answer is no!


To look a little deeper at your question:

> One expects that the null value belongs to any reference (or nullable) type

One would be implicitly assuming that a type is a set of values, and that assignment compatibility of a value y with a variable of type X is nothing more nor less than checking whether y is a member of set x.

Though that is an extremely common way of looking at types, that is not the only way of looking at types, and it is not the way that C# looks at types. Null references are members of no type in C#; assignment compatibility is not merely checking a set to see if it contains a value. Just because a null reference is assignment compatible with a variable of reference type X does not mean that null is a member of type X. The "is assignment compatible with" relation and the "is a member of type" relation obviously have a lot of overlap, but they are not identical in the CLR.

If musings about type theory interest you, check out my recent articles on the subject:

What is this thing you call a "type"? Part one

What is this thing you call a "type"? Part Two

Solution 2 - C#

I think null is string returning false is very intuitive. Null means nothing, and it is definitely not a string. So it should return false. While it is a choice the language designers made, it is a very intuitive one when you consider the real world meaning of null.

Solution 3 - C#

The null literal can be assigned to any reference type. It is not a type in an of itself. It is a special literal that represents a null reference.

In the case that is would return true when a null would be passed in, what would you be able to do with the null literal? Nothing - it is null. What would be the point of it returning true except for confusing matters?


Regardless - in terms of how intuitive that is, read the code in English and tell me:

null is string;

When I see that, it seems to be asking the question is "nothing" a string?. My intuition tells me that no, it isn't - it's nothing.

Solution 4 - C#

http://msdn.microsoft.com/en-us/library/scekt9xw%28v=vs.71%29.aspx

> An is expression evaluates to true if both of the following conditions > are met: >
> - expression is not null. > - expression can be cast to type. That is, a cast expression of the > form (type (expression) will complete without throwing an exception. > For more information, see 7.6.6 Cast expressions.

Solution 5 - C#

As a practical matter, having "null is T == false" saves me typing extra code:

Instead of having to say

if (X != null && X is Foo) {}

I can just say

if (X is Foo) {}

and be done with it.

Solution 6 - C#

> the null value

I've quoted this from your question because it seems to get to the heart of the matter. null isn't a value - it's the absence of a value. The purpose of is to me seems to be to answer the question:

> If I cast E to T, will I successfully get a T ?

Now, while you can cast null to T without error, after doing so you don't "have a T" - you've still got nothing. So it's not the case that null "is" a T, so is returns false.

Solution 7 - C#

In Java there is an operator that does exactly same thing, but it has much longer name: instanceof. It's very intuitive there that null instanceof String returns false, because null is not an instance of anything, much less a String. So, when using null the Java's version is bit more intuitive.

However, both of those operators return true when asked to look through entire hierarchy as well. Eg. if instance of String is an Object. And here it's Java that's bit less intuitive (because an instance actually has one, very specific type) and C#'s is is more intuitive (because every String is an Object deep inside).

Bottom line: if you try to describe pretty advanced logic in one word, you're bound to have few people confused, this way or another. It seems that most people agreed on one meaning and those who did not agree, had to adjust.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGebbView Question on Stackoverflow
Solution 1 - C#Eric LippertView Answer on Stackoverflow
Solution 2 - C#manojldsView Answer on Stackoverflow
Solution 3 - C#OdedView Answer on Stackoverflow
Solution 4 - C#Miserable VariableView Answer on Stackoverflow
Solution 5 - C#Rodger VanceView Answer on Stackoverflow
Solution 6 - C#AakashMView Answer on Stackoverflow
Solution 7 - C#Agent_LView Answer on Stackoverflow