Abstract
This article will help you to understand the Nullable
type implementation in C#. This article also explains about Coalescing Operator and how CLR has special support for Nullable
value type.
Introduction
As we all know, a value type variable cannot be null
. That's why they are called Value Type. Value type has a lot of advantages, however, there are some scenarios where we require value type to hold null
also.
Consider the following scenario:
Scenario 1: You are retrieving nullable integer column data from database table, and the value in database is null
, there is no way you can assign this value to an C# int
.
Scenario 2: Suppose you are binding the properties from UI but the corresponding UI don't have data. (For example, model binding in ASP.NET MVC or WPF). Storing the default value in model for value type is not a viable option.
Scenario 3: In Java, java.Util.Date
is a reference type, and therefore, the variable of this type can be set to null
. However, in CLR, System.DateTime
is a value type and a DateTime
variable cannot be null
. If an application written in Java wants to communicate a date/time to a Web service running on the CLR, there is a problem if the Java application sends null
because the CLR has no way to represent this and operate on it.
Scenario 4: When passing value type parameter to a function, if the value of parameter is not known and if you don't want to pass it, you go with default value. But default value is not always a good option because default value can also be a passed parameter value, so, should not be treated explicitly.
Scenario 5: When deserializing the data from XML or JSON, it becomes difficult to deal with the situation if the value type property expects a value and it is not present in the source.
Likewise, there are many scenarios we faced in our day to day life.
To get rid of these situations, Microsoft added the concept of Nullable
types to the CLR. To Understand this, have a look at the logical definition of System.Nullable<T>
Type:
(Please note that below code snippet is the logical definition for illustration purposes only. Taken from "CLR Via C#, 3rd edition", written by Jeffrey Richter)
[Serializable, StructLayout(LayoutKind.Sequential)]
public struct Nullable<T> where T : struct
{
private Boolean hasValue = false;
internal T value = default(T);
public Nullable(T value)
{
this.value = value;
this.hasValue = true;
}
public Boolean HasValue { get { return hasValue; } }
public T Value
{
get
{
if (!hasValue)
{
throw new InvalidOperationException(
"Nullable object must have a value.");
}
return value;
}
}
public T GetValueOrDefault() { return value; }
public T GetValueOrDefault(T defaultValue)
{
if (!HasValue) return defaultValue;
return value;
}
public override Boolean Equals(Object other)
{
if (!HasValue) return (other == null);
if (other == null) return false;
return value.Equals(other);
}
public override int GetHashCode()
{
if (!HasValue) return 0;
return value.GetHashCode();
}
public override string ToString()
{
if (!HasValue) return "";
return value.ToString();
}
public static implicit operator Nullable<T>(T value)
{
return new Nullable<T>(value);
}
public static explicit operator T(Nullable<T> value)
{
return value.Value;
}
}
From the above definition, you can easily make out that:
Nullable<T>
type is also a value type. Nullable
Type is of struct
type that holds a value type (struct
) and a Boolean
flag, named HasValue
, to indicate whether the value is null
or not. - Since
Nullable<T>
itself is a value type, it is fairly lightweight. The size of Nullable<T>
type instance is the same as the size of containing value type plus the size of a boolean
. - The
nullable
types parameter T
is struct
, i.e., you can use nullable
type only with value types. This is quite ok because reference types can already be null
. You can also use the Nullable<T>
type for your user defined struct
. Nullable
type is not an extension in all the value types. It is a struct
which contains a generic value type and a boolean
flag.
Syntax and Usage
To use Nullable
type, just declare Nullable
struct
with a value type parameter, T
, and declare it as you are doing for other value types.
For example:
Nullable<int> i = 1;
Nullable<int> j = null;
Use Value
property of Nullable
type to get the value of the type it holds. As the definition says, it will return the value if it is not null
, else, it will throw an exception. So, you may need to check for the value being null
before using it.
Console.WriteLine("i: HasValue={0}, Value={1}", i.HasValue, i.Value);
Console.WriteLine("j: HasValue={0}, Value={1}", j.HasValue, j.GetValueOrDefault());
i: HasValue=True, Value=5
j: HasValue=False, Value=0
Conversions and Operators for Nullable Types
C# also supports simple syntax to use Nullable
types. It also supports implicit conversion and casts on Nullable
instances. The following example shows this:
int? i = 5;
int? j = null;
int k = (int)i;
Double? x = 5;
Double? y = j;
You can use operators on Nullable
types the same way you use it for the containing types.
- Unary operators (++, --, -, etc) returns
null
if the Nullable
types value is set to null
. - Binary Operator (+, -, *, /, %, ^, etc) returns
null
if any of the operands is null
. - For Equality Operator, if both operands are
null
, expression is evaluated to true
. If either operand is null
, it is evaluated to false
. If both are not null
, it compares as usual. - For Relational Operator (>, <, >=, <=), if either operand is
null
, the result is false
and if none of the operands is null
, compares the value.
See the example below:
int? i = 5;
int? j = null;
i++;
j = -j;
i = i + 3;
j = j * 3;
if (i == null) { } else { }
if (j == null) { } else { }
if (i != j) { } else { }
if (i > j) { } else { }
The Coalescing Operator
C# provides you quite a simplified syntax to check null
and simultaneously assign another value in case the value of the variable is null
. This can be used in Nullable types as well as reference types.
For example, the code below:
int? i = null;
int j;
if (i.HasValue)
j = i.Value;
else
j = 0;
j = i ?? 0;
string pageTitle = suppliedTitle ?? "Default Title";
string fileName = GetFileName() ?? string.Empty;
string connectionString = GetConnectionString() ?? defaultConnectionString;
int age = employee.Age ?? 0;
int?[] numbers = { };
int total = numbers.Sum() ?? 0;
Customer customer = db.Customers.Find(customerId) ?? new Customer();
string username = Session["Username"] ?? string.Empty;
Employee employee = GetFromCache(employeeId) ?? GetFromDatabase(employeeId);
You can also chain it, which may save a lot of coding for you. See the example below:
string address = string.Empty;
string permanent = GetPermanentAddress();
if (permanent != null)
address = permanent;
else
{
string local = GetLocalAddress();
if (local != null)
address = local;
else
{
string office = GetOfficeAddress();
if (office != null)
address = office;
}
}
string address = GetPermanentAddress() ?? GetLocalAddress()
?? GetOfficeAddress() ?? string.Empty;
The code above with Coalescing operator is far easier to read and understand than that of a nested if else
chain.
Boxing and UnBoxing of Nullable types
Since I have mentioned earlier that the Nullable<T>
is still a value type, you must understand performance while boxing and unboxing of Nullable<T>
type.
The CLR executes a special rule to box and unbox the Nullable
types. When CLR is boxing a Nullable
instance, it checks to see if the value is assigned null
. In this case, CLR does not do anything and simply assigns null
to the object
. If the instance is not null
, CLR takes the value and boxes it similar to the usual value type.
While unboxing to Nullable
type, CLR checks If an object
having its value assigned to null
. If yes, it simply assigns the value of Nullable
type to null
. Else, it is unboxing as usual.
int? n = null;
Object o = n;
Console.WriteLine("o is null={0}", o == null);
n = 5;
o = n;
Console.WriteLine("o's type={0}", o.GetType());
Object o = 5;
int? a = (Int32?) o;
int b = (Int32) o;
o = null;
a = (int?) o;
b = (int) o;
Calling GetType() for Nullable Type
When calling GetType()
for Nullable<T>
type, CLR actually lies and returns the Type the Nullable
type it holds. Because of this, you may not be able to distinguish a boxed Nullable<int>
was actually a int
or Nullable<int>
.
See the example below:
int? i = 10;
Console.WriteLine(i.GetType());
Points of Interest
Note that I haven't discussed the details of memory allocation and object creation while boxing and unboxing to keep the article focused to Nullable
types only. You may Google it for details about boxing and unboxing.
Conclusion
Since Nullable
Type is also a value type and fairly lightweight, don't hesitate to use it. It is quite useful in your data driven application.
References
History
- 1st November, 2011: Version 1.0