Why does the C# compiler not even complain with a warning on this code? :
if (this == null)
{
// ...
}
Obviously the condition will never be satisfied..
|
|
Because you could override
Running The other question here is: why doesn't the compiler issue a warning for
That might be answered by @Aaronaught's response. And that's also why you should be doing |
|||||||||||||||||||||
|
I disagree. I think you still make a good point. The compiler knows whether the comparison is going to go to a user-defined comparison operator or not, and the compiler knows that if it does not, then 'this' is never null. And in fact, the compiler does track whether a given expression can legally be null or not, in order to implement a minor optimization on non-virtual method calls. If you have a non-virtual method M and you say Now, if we can get away without doing the null check, we do. If you say So the compiler has excellent data on whether a particular comparison to null will sometimes, always, or never succeed. The question then is "if the compiler knows that a particular comparison will never succeed, why not generate a warning for it?" And the answer is "sometimes we do, and sometimes we don't". We do in this situation:
There is an equality operator defined on two nullable ints. x is convertible to nullable int. null is convertible to nullable int. So that equality operator is valid, and therefore is used, and is of course always false. The compiler gives a warning that the expression is always false. However, due to a bug we accidentally introduced in C# 3, this code does NOT produce that warning:
Same deal. The nullable guid equality operator is valid, but the warning is suppressed. I'm not sure if we fixed this bug for C# 4 or not. If not, hopefully we'll get it into a service pack. As for "if (this == null)" I don't know why we don't warn for that. It certainly seems like a good candidate for a warning. The most likely explanation is to follow this logical syllogism:
There are infinitely many compiler features that we haven't thought of yet; we've implemented none of them. Another reason to not give a warning here is that we try to give warnings on code which is both likely to be typed by accident and almost certainly wrong for a non-obvious reason. "this == null" is not likely to be typed in by accident, and though it is almost certainly wrong, as you note in the statement of your question, it is obviously wrong. Compare that to our "guid == null" -- that is likely to happen by accident, because a developer might accidentally think that Guid is a reference type. Guids are usually passed around by reference in C++, so this is an easy mistake to make. The code is almost certainly wrong, but it is wrong in a non-obvious way. So this is a good candidate for a warning. (Which is why it is so unfortunate that this is a warning in C# 2 but not C# 3, due to a bug we introduced.) |
|||||||||||||
|
|
Actually, the condition really can be satisfied, at least in Visual Studio 2008. They've fixed this behaviour in VS 2010, but it is not totally inconceivable that there might be another way to create such a condition. (tl;dr version - in C# 3.5, it's legal to reference |
|||
|
|
|
Though the code below is a bastard it's still all C#. an if you call Bar you will get an InvalidOperationException with the message null.
|
||||
|
|
|
This also falls in line with other warnings C# does (or not does for that matter) like:
These will also always have the same result no matter what. |
|||||
|