ChatGPT解决这个技术问题 Extra ChatGPT

空文字的类型是什么?

Dear all, I wonder what is the type of null literal in C#?

In Java, the null literal is of the special null type:

There is also a special null type, the type of the expression null, which has no name. Because the null type has no name, it is impossible to declare a variable of the null type or to cast to the null type. The null reference is the only possible value of an expression of null type. The null reference can always be cast to any reference type.

In C++11, there is nullptr (the recommended version of the old buddy NULL), which is of type std::nullptr_t.

I searched MSDN about C#, but the specification doesn't seem to say anything about that.

I wouldn't exactly describe null as having a type.
@ChaosPandion: so, in C# not every expression has a type?
@ChaosPandion: well, it seems that you were not so wrong! Look at Eric's answer.
There are also "method group" and "lambda expression" types.

O
Outfrost

According to the ECMA C# language specification:

9.4.4.6 The null literal:

The type of a null-literal is the null type (§11.2.7).

11.2.7 The null type:

The null literal (§9.4.4.6) evaluates to the null value, which is used to denote a reference not pointing at any object or array, or the absence of a value. The null type has a single value, which is the null value. Hence an expression whose type is the null type can evaluate only to the null value. There is no way to explicitly write the null type and, therefore, no way to use it in a declared type. Moreover, the null type can never be the type inferred for a type parameter (§25.6.4)

So to answer your question, null is it's own type - the null type.

Although it's odd how it's not mentioned in the C# 4.0 language specification or the C# 3.0 language specification but is mentioned in the overview of C# 3.0, the ECMA C# language specification and the C# 2.0 language specification.


Strange enough, your reference to ECMA standard points at the document which is not the same as the one at MSDN: msdn.microsoft.com/en-us/library/ms228593.aspx
@Vlad that's quite interesting, it might be worth seeing what Eric Lippert has to say about it.
I think, the reasoning for having a separate type for null is the same as for Java/C++. I wonder however why this didn't find its way into MSDN.
@Vlad perhaps it's in a seperate document on MSDN? (CLR / CTS) whereas ECMA wanted it added to the base document?
Well, null literal itself is perhaps a language-specific entity. But CLI knows about nulls and types, so it has to be in the CLR specs, too.
E
Eric Lippert

UPDATE: This question was the subject of my blog in July 2013. Thanks for the great question!

J.Kommer's answer is correct (and good on them for doing what was evidently a lot of spec digging!) but I thought I'd add a little historical perspective.

When Mads and I were sorting out the exact wording of various parts of the specification for C# 3.0 we realized that the "null type" was bizarre. It is a "type" with only one value. It is a "type" that Reflection knows nothing about. It is a "type" that doesn't have a name, that GetType never returns, that you can't specify as the type of a local variable or field or anything. In short, it really is a "type" that is there only to make the type system "complete", so that every compile-time expression has a type.

Except that C# already had expressions that had no type: method groups in C# 1.0, anonymous methods in C# 2.0 and lambdas in C# 3.0 all have no type. If all those things can have no type, we realized that "null" need not have a type either. Therefore we removed references to the useless "null type" in C# 3.0.

As an implementation detail, the Microsoft implementations of C# 1.0 through 5.0 all do have an internal object to represent the "null type". They also have objects to represent the non-existing types of lambdas, anonymous methods and method groups. This implementation choice has a number of pros and cons. On the pro side, the compiler can ask for the type of any expression and get an answer. On the con side, it means that sometimes bugs in the type analysis that really ought to have crashed the compiler instead cause semantic changes in programs. My favourite example of that is that it is possible in C# 2.0 to use the illegal expression "null ?? null"; due to a bug the compiler fails to flag it as an erroneous usage of the ?? operator, and goes on to infer that the type of this expression is "the null type", even though that is not a null literal. That then goes on to cause many other downstream bugs as the type analyzer tries to make sense of the type.

In Roslyn we will probably not use this strategy; rather, we'll simply bake into the compiler implementation that some expressions have no type.


I was hoping Roslyn would enable asking what the type of any expression is, and would add type definitions for all those non-type types. How else would you answer the question "what type is the expression null?"
@Vlad: The official position as of C# 3.0 is that "null" does not have a type.
@Eric null ?? null compiles just fine in C# 4.0
@KFL: Since you've deduced a falsehood from a sensible argument, one of your premises must be incorrect. Your belief that in OOP languages, assignability of an expression x to a variable of t type T implies (1) that x has a type T' and (2) that T' is a subtype of T, is simply false. You could find many examples of this statement being falsified, starting with double y = 2 + 2; The expression is of type int, the variable is of type double, and there is no subtyping relationship between int and double.
@KFL: In C# null has no type at all; it certainly is not a subtype of anything. Again, the idea that assignment compatibility implies subtyping is false; it's the other way. Subtyping implies assignment compatibility.
e
emrgee

Despite of having no runtime type, null can be cast to a type at compile time, as this example shows.

At runtime, you can find that variable stringAsObject holds a string, not only an object, but you cannot find any type for variables nullString and nullStringAsObject.

public enum Answer { Object, String, Int32, FileInfo };
private Answer GetAnswer(int i) { return Answer.Int32; }
private Answer GetAnswer(string s) { return Answer.String; }
private Answer GetAnswer(object o) { return Answer.Object; }

[TestMethod]
public void MusingAboutNullAtRuntimeVsCompileTime()
{
    string nullString = null;
    object nullStringAsObject = (string)null;
    object stringAsObject = "a string";

    // resolved at runtime
    Expect.Throws(typeof(ArgumentNullException), () => Type.GetTypeHandle(nullString));
    Expect.Throws(typeof(ArgumentNullException), () => Type.GetTypeHandle(nullStringAsObject));
    Assert.AreEqual(typeof(string), Type.GetTypeFromHandle(Type.GetTypeHandle(stringAsObject)));
    Assert.AreEqual(typeof(string), stringAsObject.GetType());

    // resolved at compile time
    Assert.AreEqual(Answer.String, this.GetAnswer(nullString));
    Assert.AreEqual(Answer.Object, this.GetAnswer(nullStringAsObject));
    Assert.AreEqual(Answer.Object, this.GetAnswer(stringAsObject));
    Assert.AreEqual(Answer.Object, this.GetAnswer((object)null));
    Assert.AreEqual(Answer.String, this.GetAnswer((string)null));
    Assert.AreEqual(Answer.String, this.GetAnswer(null));
}

// Uncommenting the following method overload
// makes the last statement in the test case ambiguous to the compiler
// private Answer GetAnswer(FileInfo f) { return Answer.FileInfo; }