Represents an object whose underlying type is a value type that can also be assigned null like a reference type.
Assembly: mscorlib (in mscorlib.dll)
<SerializableAttribute> _ Public Structure Nullable(Of T As {Structure, New})
[SerializableAttribute] public struct Nullable<T> where T : struct, new()
[SerializableAttribute] generic<typename T> where T : value class, gcnew() public value class Nullable
[<Sealed>] [<SerializableAttribute>] type Nullable<'T when 'T : struct, new()> = struct end
Type Parameters
- T
-
The underlying value type of the Nullable<T> generic type.
The Nullable<T> type exposes the following members.
| Name | Description | |
|---|---|---|
|
Nullable<T> | Initializes a new instance of the Nullable<T> structure to the specified value. |
| Name | Description | |
|---|---|---|
|
HasValue | Gets a value indicating whether the current Nullable<T> object has a value. |
|
Value | Gets the value of the current Nullable<T> value. |
| Name | Description | |
|---|---|---|
|
Equals | Indicates whether the current Nullable<T> object is equal to a specified object. (Overrides ValueType.Equals(Object).) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Retrieves the hash code of the object returned by the Value property. (Overrides ValueType.GetHashCode().) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
GetValueOrDefault() | Retrieves the value of the current Nullable<T> object, or the object's default value. |
|
GetValueOrDefault(T) | Retrieves the value of the current Nullable<T> object, or the specified default value. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
ToString | Returns the text representation of the value of the current Nullable<T> object. (Overrides ValueType.ToString().) |
| Name | Description | |
|---|---|---|
|
Explicit(Nullable<T> to T) | Returns the value of a specified Nullable<T> value. |
|
Implicit(T to Nullable<T>) | Creates a new Nullable<T> object initialized to a specified value. |
A type is said to be nullable if it can be assigned a value or can be assigned null, which means the type has no value whatsoever. Consequently, a nullable type can express a value, or that no value exists. For example, a reference type such as String is nullable, whereas a value type such as Int32 is not. A value type cannot be nullable because it has enough capacity to express only the values appropriate for that type; it does not have the additional capacity required to express a value of null.
The Nullable<T> structure supports using only a value type as a nullable type because reference types are nullable by design.
The Nullable class provides complementary support for the Nullable<T> structure. The Nullable class supports obtaining the underlying type of a nullable type, and comparison and equality operations on pairs of nullable types whose underlying value type does not support generic comparison and equality operations.
Scenario
Use nullable types to represent things that exist or do not exist depending on the circumstance. For example, an optional attribute of an HTML tag might exist in one tag but not another, or a nullable column of a database table might exist in one row of the table but not another.
You can represent the attribute or column as a field in a class and you can define the field as a value type. The field can contain all the valid values for the attribute or column, but cannot accommodate an additional value that means the attribute or column does not exist. In this case, define the field to be a nullable type instead of a value type.
Fundamental Properties
The two fundamental members of the Nullable<T> structure are the HasValue and Value properties. If the HasValue property for a Nullable<T> object is true, the value of the object can be accessed with the Value property. If the HasValue property is false, the value of the object is undefined and an attempt to access the Value property throws an InvalidOperationException.
Boxing and Unboxing
When a nullable type is boxed, the common language runtime automatically boxes the underlying value of the Nullable<T> object, not the Nullable<T> object itself. That is, if the HasValue property is true, the contents of the Value property is boxed. When the underlying value of a nullable type is unboxed, the common language runtime creates a new Nullable<T> structure initialized to the underlying value.
If the HasValue property of a nullable type is false, the result of a boxing operation is null. Consequently, if a boxed nullable type is passed to a method that expects an object argument, that method must be prepared to handle the case where the argument is null. When null is unboxed into a nullable type, the common language runtime creates a new Nullable<T> structure and initializes its HasValue property to false.
The following code example defines three rows of a table in the Microsoft Pubs sample database. The table contains two columns that are not nullable and two columns that are nullable.
' This code example demonstrates the Nullable(Of T) class. ' The code example defines a database table in which two columns ' are nullable. In the application, an array of rows is created ' and initialized. The table rows could subsequently be ' written to a database. Imports System Class Sample ' Define the "titleAuthor" table of the Microsoft "pubs" database. Public Structure titleAuthor ' Author ID; format ###-##-#### Public au_id As String ' Title ID; format AA#### Public title_id As String ' Author ORD is nullable. Public au_ord As Nullable(Of Short) ' Royalty Percent is nullable. Public royaltyper As Nullable(Of Integer) End Structure 'titleAuthor Public Shared Sub Main() ' Declare and initialize the titleAuthor array. Dim ta(2) As titleAuthor ta(0).au_id = "712-32-1176" ta(0).title_id = "PS3333" ta(0).au_ord = 1 ta(0).royaltyper = 100 ta(1).au_id = "213-46-8915" ta(1).title_id = "BU1032" ta(1).au_ord = Nothing ta(1).royaltyper = Nothing ta(2).au_id = "672-71-3249" ta(2).title_id = "TC7777" ta(2).au_ord = Nothing ta(2).royaltyper = 40 ' Display the values of the titleAuthor array elements, and ' display a legend. Display("Title Authors Table", ta) Console.WriteLine("Legend:") Console.WriteLine("An Author ORD of -1 means no value is defined.") Console.WriteLine("A Royalty % of 0 means no value is defined.") End Sub 'Main ' Display the values of the titleAuthor array elements. Public Shared Sub Display(ByVal dspTitle As String, _ ByVal dspAllTitleAuthors() As titleAuthor) Console.WriteLine("*** {0} ***", dspTitle) Dim dspTA As titleAuthor For Each dspTA In dspAllTitleAuthors Console.WriteLine("Author ID ... {0}", dspTA.au_id) Console.WriteLine("Title ID .... {0}", dspTA.title_id) Console.WriteLine("Author ORD .. {0}", dspTA.au_ord.GetValueOrDefault(-1)) Console.WriteLine("Royalty % ... {0}", dspTA.royaltyper.GetValueOrDefault(0)) Console.WriteLine() Next dspTA End Sub 'Display End Class 'Sample ' 'This code example produces the following results: ' '*** Title Authors Table *** 'Author ID ... 712-32-1176 'Title ID .... PS3333 'Author ORD .. 1 'Royalty % ... 100 ' 'Author ID ... 213-46-8915 'Title ID .... BU1032 'Author ORD .. -1 'Royalty % ... 0 ' 'Author ID ... 672-71-3249 'Title ID .... TC7777 'Author ORD .. -1 'Royalty % ... 40 ' 'Legend: 'An Author ORD of -1 means no value is defined. 'A Royalty % of 0 means no value is defined. '
// This code example demonstrates the Nullable<T> class. // The code example defines a database table in which two columns // are nullable. In the application, an array of rows is created // and initialized. The table rows could subsequently be // written to a database. using System; class Sample { // Define the "titleAuthor" table of the Microsoft "pubs" database. public struct titleAuthor { // Author ID; format ###-##-#### public string au_id; // Title ID; format AA#### public string title_id; // Author ORD is nullable. public short? au_ord; // Royalty Percent is nullable. public int? royaltyper; } public static void Main() { // Declare and initialize the titleAuthor array. titleAuthor[] ta = new titleAuthor[3]; ta[0].au_id = "712-32-1176"; ta[0].title_id = "PS3333"; ta[0].au_ord = 1; ta[0].royaltyper = 100; ta[1].au_id = "213-46-8915"; ta[1].title_id = "BU1032"; ta[1].au_ord = null; ta[1].royaltyper = null; ta[2].au_id = "672-71-3249"; ta[2].title_id = "TC7777"; ta[2].au_ord = null; ta[2].royaltyper = 40; // Display the values of the titleAuthor array elements, and // display a legend. Display("Title Authors Table", ta); Console.WriteLine("Legend:"); Console.WriteLine("An Author ORD of -1 means no value is defined."); Console.WriteLine("A Royalty % of 0 means no value is defined."); } // Display the values of the titleAuthor array elements. public static void Display(string dspTitle, titleAuthor[] dspAllTitleAuthors) { Console.WriteLine("*** {0} ***", dspTitle); foreach (titleAuthor dspTA in dspAllTitleAuthors) { Console.WriteLine("Author ID ... {0}", dspTA.au_id); Console.WriteLine("Title ID .... {0}", dspTA.title_id); Console.WriteLine("Author ORD .. {0}", dspTA.au_ord ?? -1); Console.WriteLine("Royalty % ... {0}", dspTA.royaltyper ?? 0); Console.WriteLine(); } } } /* This code example produces the following results: *** Title Authors Table *** Author ID ... 712-32-1176 Title ID .... PS3333 Author ORD .. 1 Royalty % ... 100 Author ID ... 213-46-8915 Title ID .... BU1032 Author ORD .. -1 Royalty % ... 0 Author ID ... 672-71-3249 Title ID .... TC7777 Author ORD .. -1 Royalty % ... 40 Legend: An Author ORD of -1 means no value is defined. A Royalty % of 0 means no value is defined. */
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Portable Class Library
Supported in: Portable Class LibraryWindows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Reference
JIT compiler implement null comparison inefficiently for generic types, when generic argument is nullable type.
using System;
using System.Diagnostics;
internal static class Test{
private static void Main(){
try{
Stopwatch sw=new Stopwatch();
for(int i=0;i<10;++i){
sw.Restart();
for(int j=0;j<1000000;++j){
IsNull((int?)j);
}
sw.Stop();
Console.WriteLine(sw.ElapsedTicks);
sw.Restart();
for(int j=0;j<1000000;++j){
IsNull2((int?)j);
}
sw.Stop();
Console.WriteLine(sw.ElapsedTicks);
Console.WriteLine();
}
}catch(Exception e){
Console.WriteLine(e);
}
Console.ReadKey();
}
private static bool IsNull<T>(T arg){
return arg==null; //inefficiently when T is Nullable<>
}
private static bool IsNull2<T>(T? arg) where T:struct{
return arg==null;
}
}