Why is the following forbidden?
Nullable<Nullable<int>>
whereas
struct MyNullable <T>
{
}
MyNullable<Nullable<int>>
is NOT
|
|
|||||
|
|
|
This is because the struct constraint actually means 'not nullable' since Nullable, despite being a struct, is nullable (can accept the value null) the This is made explicit in the constraints documentation
If you want the rationale for that you would need the actual language designer's comments on it which I can't find. However I would postulate that:
Allowing the equivalent of int?? would only confuse that since the language provides no way of distinguishing Nullable
Making that return true would be very complex and significant overhead on many operations involving the Nullable type. Some types in the CLR are 'special', examples are strings and primitives in that the compiler and runtime know a lot about the implementation used by each other. Nullable is special in this way as well. Since it is already special cased in other areas special casing the Where languages are designed to allow two very different concepts to interact you tend to get weird, confusing or down right dangerous edge cases. As an example consider Nullable and the equality operators
By preventing Nullables when using struct generic constraint many nasty (and unclear) edge cases can be avoided. As to the exact part of the specification that mandates this from section 25.7 (emphasis mine):
|
||||||||||
|
|
|
I believe you can only use non-nullable value types in From http://msdn.microsoft.com/en-us/library/kwxxazwb.aspx
|
||||||
|
|
|
Nullable is special because there's explicit support for boxing and unboxing of Nullable types built into the CLR: If you use the MSIL There's similar and symmetrical support for unboxing. |
||||||
|
|
|
The generic type parameter for Nullable must itself be a non-nullable type (i.e. value type). This is the C# compiler warning I get, and it would seem to make sense. Tell me, why would you want to do such a thing anyway? I personally can see no use, and little meaning to such a declaration even. |
||||||||||
|
|
|
Nullable allows you to take a value type and make it like a reference type, in the sense that the value either exists or not (is null). Since a reference type is already nullable it is not allowed. Quoted from MSDN:
|
||||||
|