C# Language
Nullable型
サーチ…
構文
-
Nullable<int> i = 10;
- int? j = 11;
- int? k = null;
- 日付時刻? DateOfBirth = DateTime.Now;
- 小数?量= 1.0m;
- ブール? IsAvailable = true;
- チャー文字= 'a';
- (タイプ)? variableName
備考
Nullable型は、基底型のすべての値とnull
を表すことができnull
。
構文T?
Nullable<T>
省略形です。
null System.ValueType
な値は実際にはSystem.ValueType
オブジェクトなので、ボックス化およびボックス化解除することができます。また、 null
可能オブジェクトのnull
値は参照オブジェクトのnull
値と同じではなく、単なるフラグです。
null可能なオブジェクトboxingの場合、null値はnull
参照に変換され、 null
以外の値はnull不可能な基底型に変換されます。
DateTime? dt = null;
var o = (object)dt;
var result = (o == null); // is true
DateTime? dt = new DateTime(2015, 12, 11);
var o = (object)dt;
var dt2 = (DateTime)dt; // correct cause o contains DateTime value
2番目のルールは正しいが逆説的なコードにつながります:
DateTime? dt = new DateTime(2015, 12, 11);
var o = (object)dt;
var type = o.GetType(); // is DateTime, not Nullable<DateTime>
短い形式で:
DateTime? dt = new DateTime(2015, 12, 11);
var type = dt.GetType(); // is DateTime, not Nullable<DateTime>
nullableを初期化する
null
値の場合:
Nullable<int> i = null;
または:
int? i = null;
または:
var i = (int?)null;
null以外の値の場合:
Nullable<int> i = 0;
または:
int? i = 0;
Nullableに値があるかどうかを確認する
int? i = null;
if (i != null)
{
Console.WriteLine("i is not null");
}
else
{
Console.WriteLine("i is null");
}
どちらが同じです:
if (i.HasValue)
{
Console.WriteLine("i is not null");
}
else
{
Console.WriteLine("i is null");
}
null可能な型の値を取得する
与えられたnull可能なint
int? i = 10;
デフォルト値が必要な場合は、 null融合演算子 GetValueOrDefault
を使用して割り当てるか、代入前にnullable int HasValue
チェックします。
int j = i ?? 0;
int j = i.GetValueOrDefault(0);
int j = i.HasValue ? i.Value : 0;
次の使用法は常に安全ではありません 。実行時にi
がnullの場合、 System.InvalidOperationException
がスローされます。設計時に、値が設定されていなければ、 Use of unassigned local variable 'i'
発生します。
int j = i.Value;
null可能な値からデフォルト値を取得する
.GetValueOrDefault()
メソッドは、 .HasValue
プロパティがfalseの場合でも値を返します(例外をスローするValueプロパティとは異なります)。
class Program
{
static void Main()
{
int? nullableExample = null;
int result = nullableExample.GetValueOrDefault();
Console.WriteLine(result); // will output the default value for int - 0
int secondResult = nullableExample.GetValueOrDefault(1);
Console.WriteLine(secondResult) // will output our specified default - 1
int thirdResult = nullableExample ?? 1;
Console.WriteLine(secondResult) // same as the GetValueOrDefault but a bit shorter
}
}
出力:
0
1
ジェネリック型パラメータがヌル可能な型かどうかをチェックする
public bool IsTypeNullable<T>()
{
return Nullable.GetUnderlyingType( typeof(T) )!=null;
}
ヌル可能型のデフォルト値はnullです。
public class NullableTypesExample
{
static int? _testValue;
public static void Main()
{
if(_testValue == null)
Console.WriteLine("null");
else
Console.WriteLine(_testValue.ToString());
}
}
出力:
ヌル
基礎となるNullableの効果的な使用法引数
null可能な型はすべて汎用型です。 null可能な型は値型です。
リフレクション /コード生成の目的に関連するコードを作成するときに、 Nullable.GetUnderlyingTypeメソッドの結果を効果的に使用できるようにするいくつかの秘訣があります。
public static class TypesHelper {
public static bool IsNullable(this Type type) {
Type underlyingType;
return IsNullable(type, out underlyingType);
}
public static bool IsNullable(this Type type, out Type underlyingType) {
underlyingType = Nullable.GetUnderlyingType(type);
return underlyingType != null;
}
public static Type GetNullable(Type type) {
Type underlyingType;
return IsNullable(type, out underlyingType) ? type : NullableTypesCache.Get(type);
}
public static bool IsExactOrNullable(this Type type, Func<Type, bool> predicate) {
Type underlyingType;
if(IsNullable(type, out underlyingType))
return IsExactOrNullable(underlyingType, predicate);
return predicate(type);
}
public static bool IsExactOrNullable<T>(this Type type)
where T : struct {
return IsExactOrNullable(type, t => Equals(t, typeof(T)));
}
}
使用法:
Type type = typeof(int).GetNullable();
Console.WriteLine(type.ToString());
if(type.IsNullable())
Console.WriteLine("Type is nullable.");
Type underlyingType;
if(type.IsNullable(out underlyingType))
Console.WriteLine("The underlying type is " + underlyingType.Name + ".");
if(type.IsExactOrNullable<int>())
Console.WriteLine("Type is either exact or nullable Int32.");
if(!type.IsExactOrNullable(t => t.IsEnum))
Console.WriteLine("Type is neither exact nor nullable enum.");
出力:
System.Nullable`1[System.Int32]
Type is nullable.
The underlying type is Int32.
Type is either exact or nullable Int32.
Type is neither exact nor nullable enum.
PS。 NullableTypesCache
は次のように定義されています。
static class NullableTypesCache {
readonly static ConcurrentDictionary<Type, Type> cache = new ConcurrentDictionary<Type, Type>();
static NullableTypesCache() {
cache.TryAdd(typeof(byte), typeof(Nullable<byte>));
cache.TryAdd(typeof(short), typeof(Nullable<short>));
cache.TryAdd(typeof(int), typeof(Nullable<int>));
cache.TryAdd(typeof(long), typeof(Nullable<long>));
cache.TryAdd(typeof(float), typeof(Nullable<float>));
cache.TryAdd(typeof(double), typeof(Nullable<double>));
cache.TryAdd(typeof(decimal), typeof(Nullable<decimal>));
cache.TryAdd(typeof(sbyte), typeof(Nullable<sbyte>));
cache.TryAdd(typeof(ushort), typeof(Nullable<ushort>));
cache.TryAdd(typeof(uint), typeof(Nullable<uint>));
cache.TryAdd(typeof(ulong), typeof(Nullable<ulong>));
//...
}
readonly static Type NullableBase = typeof(Nullable<>);
internal static Type Get(Type type) {
// Try to avoid the expensive MakeGenericType method call
return cache.GetOrAdd(type, t => NullableBase.MakeGenericType(t));
}
}