Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to the docs: http://msdn.microsoft.com/en-us/library/x13ttww7.aspx:

The volatile keyword can be applied to reference types.

So why is it illegal to use on a Nullable<T>.. a reference type!

Please note that I do not actually need volatile semantics on a Nullable<T> field, I encountered this error accidentally and am simply curious.

share|improve this question
as an aside: Don't use volatile. It's broken... – Mitch Wheat Nov 18 '11 at 23:43
@MitchWheat: got any reference on that? – Dani Nov 18 '11 at 23:44
4  
@MitchWheat: Or at least very badly misunderstood by almost everyone (including me). – Jon Skeet Nov 18 '11 at 23:44
4  

2 Answers

up vote 12 down vote accepted

Nullable<T> isn't a reference type. It's a value type:

public struct Nullable<T>
where T : struct, new()

Note the struct part.

Just because it has a null value doesn't make it a reference type... it's a nullable value type. See section 4.1.10 of the C# 4 language spec for more details.

share|improve this answer
Of course it's physically impossible to represent a value type with null, so while I will accept that the language defines it as 'struct' (and therefore cannot be volatile), I will not accept that it's actually a value type =) – Tergiver Nov 18 '11 at 23:49
3  
@Tergiver: You've misunderstood null. Nullable<T> very definitely is a value type, but null doesn't mean what you think it means. The null literal is convertible to "the null value for any nullable type" - a null reference for reference types, or a value where the HasValue property is false for a nullable value type. – Jon Skeet Nov 18 '11 at 23:52
No I understand perfectly. Your speaking in the strict sense of the (high-level) language. I tend to think at a lower level. I'm not arguing that you're wrong. You are very much correct. – Tergiver Nov 18 '11 at 23:54
1  
@Tergiver: No, I'm speaking at every level. Nullable<T> is a value type, plain and simple. It's as much a value type as Guid. If you think of it as a reference type, you are misunderstanding it. – Jon Skeet Nov 18 '11 at 23:55
1  
@Tergiver: You store it as a 32-bit value and a single bit... which are stored together as a value in the same way that multiple fields are encapsulated in other value types. The value of a nullable value type variable is not a reference, it's all of the information about a that value. When you use the assignment operator, that creates a copy of both the value and the "is this a real value" Boolean. It's not just a language feature - it requires support in the language, the framework and the CLR. It's very much a value type even in implementation. – Jon Skeet Nov 19 '11 at 0:04
show 5 more comments

Nullable is a value type, not a reference type.

See http://msdn.microsoft.com/en-us/library/b3h38hb0.aspx for definition.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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