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

Possible Duplicates:
What does the ? mean after a type?
C# - Basic question: What is '?' ?

What kind of statement is the one below? What does the question mark mean in that statement? How many bytes? Where would I want to use it?

char? name = null;
share|improve this question
1  
duplicate: C# - Basic question: What is '?' ? – Alex Mar 24 '11 at 13:21

marked as duplicate by Gabe, Alex, cHao, Brian, interjay Mar 24 '11 at 15:15

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

8 Answers

up vote 21 down vote accepted

For any non-nullable value type T, the type T? is simply syntactic sugar for Nullable<T>.

So for example you can write:

int? x = new Nullable<int>(5);

... although typically you'd use the conversions provided by the language, e.g.

int? x = 5;

The latter is exactly the same as

Nullable<int> x = 5;

You can think of it as being the same kind of syntactic sugar that lets you refer to System.Single as float.

For more, see the Nullable<T> documentation. (Or chapter 4 of C# in Depth, of course. :)

EDIT: Okay, just to satisfy Mr Disappointment... Nullable<T> is still a value type. The fields in it look basically like this:

public struct Nullable<T> where T : struct
{
    private readonly T value;
    private readonly bool hasValue;

    // Other members
}

Exactly how much space that will take up will depend on the context and your CLR - but it's not like it's creating a complete object with the overhead of a type reference, sync block etc.

share|improve this answer
Only thing not covered here is the number of bytes used. – Grant Thomas Mar 23 '11 at 15:30
@Mr. Disappointment: Better now? – Jon Skeet Mar 23 '11 at 15:37
2  
@MikeEast: Yes, I expect so. Is that a 32-bit or 64-bit CLR? You may or may not find the same behaviour if you create a struct or class with several char? values next to each other. Or you may find that you can squeeze a char? and a byte next to each other in 4 bytes. Context, context, context :) – Jon Skeet Mar 23 '11 at 16:03
1  
Yes, and I also get tired of answering the same questions. You write such long, detailed answers that it seems like it would be faster for you to find one of your old answers to a given question than to make up a new one. – Gabe Mar 25 '11 at 17:57
2  
I was just hoping to get you to admit that you were actually several people, and that you didn't know about the other answer because it was written by one of the other Skeets. I guess you have to get up pretty early in the morning to trick Jon Skeet(s). :) – Gabe Mar 25 '11 at 19:16
show 12 more comments

This is a nullable char - it can contain any one character or be null.

This is a short hand form of:

Nullable<char> name = null;

As @Jon Skeet pointed out Nullable<T> can only be used on value types ( reference types are already nullable anyway).

How many bytes? Where would I want to use it?

It's using internally a boolean(to store whether a value has been set or its null) and a single type T value, in your example a single char value. So that would be 3 bytes for your example (1 for the bool, 2 for a unicode character).

You would typically use a nullable value when it's possible and you want to call out that you might not have a value - in that case you can use null. Best simple example imo is a boolean which is either true, false or not set.

share|improve this answer
It's relatively unusual to put a space before the < in a generic type name, IMO. It looks odd to me. – Jon Skeet Mar 23 '11 at 15:26
that was an unintended space typo since I typed it by hand instead of copy & paste - fixed! – BrokenGlass Mar 23 '11 at 15:28
@BrokenGlass: Righto :) – Jon Skeet Mar 23 '11 at 15:28
Nice answer, though as per my comment to Jon's great answer: Only thing not covered here is the number of bytes used. – Grant Thomas Mar 23 '11 at 15:31
@Mr. Disappointment - addressed that with an update. – BrokenGlass Mar 23 '11 at 15:40
show 2 more comments

This is a short hand for System.Nullable<char>

It is an assignment (assign this nullable char a null reference, a reference that does not refer to any object).

The question mark modifies any value type that would ordinarily not allow nulls.

A char is represented by 2 bytes (they are Unicode). However, since it is nullable, sizeof calls will only work in unsafe code (because the result is unreliable and based on environment/implementation). System.Nullable is a struct and will contain a char and a bool (2 bytes and 1 byte, respectively). This totals 3 bytes, but it likely that the size of the struct will be 4 bytes, since this is probably the byte alignment of the environment/implementation being used. If the byte alignment were 8 bytes, it would be 8 bytes, etc.

sizeof(char)
//2
sizeof(char?)
//Cannot take the address of, get the size of, or declare a pointer to a managed type ('char?') 

You would want to use one when you needed to signify the variable or member you are using has no value. Be careful with nullable types, many programmers feel that "nulls are to code as nails are to tires". However, if properly handled and tested, nullable variables and members can be of value to your programs reliability and readability.

share|improve this answer
typeof (char?).IsValueType is true though, hence not a reference type, right? – Mikael Östberg Mar 23 '11 at 15:45
More closely inspecting my wording based on your question, you are correct, Mike. – marr75 Mar 23 '11 at 16:05
I was just checking in Reflector and found this: public struct Nullable<T> where T: struct. A value type it is. As master Skeet also pointed out. – Mikael Östberg Mar 23 '11 at 16:22

The question mark states that it is a nullable type.

share|improve this answer
Thank you Niklas! – crumbs Mar 23 '11 at 17:44

That is shorthand for the Nullable<T> struct which allows you to store a null value for value types (which would otherwise not support null values):

char? name = null;

Would be the same as:

Nullable<char> name = null;
share|improve this answer
Thank you! – crumbs Mar 23 '11 at 18:01

This is a nullable char. a char is a value type and is stored on the stack, and adding the ? boxes it into an object to be stored on the heap.

 private char? getLetter() {
      if(something) {
           return 'a';
      else
           return null;
 }

 char? letter = getLetter();
 if(letter.HasValue) {
      //do something with it
      Debug.WriteLine(letter.Value);
 } 
 else
     //it's null!

You can also do the same with other value-types, int, bool, etc

Edit: Here's some further reading: msdn Nullable Types

I know it's off-topic but you might also want to read up on the Ternary Operator and the Null Coalescing Operator

share|improve this answer
"stored on the stack" is misleading; only in some cases is this true – Marc Gravell Mar 23 '11 at 15:48
1  
Nullables are not boxing. Boxing is an entirely different concept. You can, however box nullables but only if they are not null. msdn.microsoft.com/en-us/library/ms228597(v=vs.80).aspx – Mikael Östberg Mar 23 '11 at 15:50
1  
Marc ... and only in a subset of such cases, does it matter all that much. – Jon Hanna Mar 23 '11 at 15:50
@Marc my mistake, I was aware of this but decided to keep it simple ;) – firefox1986 Mar 23 '11 at 16:23
Thank you, the additional reading helps! – crumbs Mar 23 '11 at 18:04

The ? is a null operator before the ? char, int and value types could not hold null but the defual value , for int 0

but now int can hold null

share|improve this answer
You should leave a comment for the down vote. – Mike Mar 23 '11 at 17:03

Just to add as per the number of bytes: This is not defined by the specs and could change. Nullable<T> is implemented as one field of type T and one field of type bool, so the minimum size char? could be is sizeof(bool) + sizeof(char) which is 3 bytes.

However, it could be packed so as to take up more space than that (packing to word alignments would have advantages), and also the implementation could change in the future.

share|improve this answer

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