特定のタイプについて、そのデフォルト値を知りたい。
C#には、これを行うためのdefaultというキーワードがあります
object obj = default(Decimal);
しかし、Typeのインスタンス(myTypeと呼ばれる)があり、これを言うと、
object obj = default(myType);
効かない
これを行う良い方法はありますか?巨大なスイッチブロックが機能することは知っていますが、それは良い選択ではありません。
参照タイプにはnull
と値タイプにはnew myType()
(int、floatなどの0に対応)の2つの可能性しかありません。
object GetDefaultValue(Type t)
{
if (t.IsValueType)
return Activator.CreateInstance(t);
return null;
}
(値型には常にデフォルトのコンストラクターがあるため、Activator.CreateInstanceの呼び出しは失敗しません)。
System.Typeに拡張メソッドとして追加することもできます。
public static class TypeExtensions
{
public static object GetDefaultValue(this Type t)
{
if (t.IsValueType && Nullable.GetUnderlyingType(t) == null)
return Activator.CreateInstance(t);
else
return null;
}
}
私のシステムでこの問題を解決したので、実行時に任意のタイプのデフォルト値を正しく決定する方法を次に示します。これは数千のタイプに対してテストされています。
/// <summary>
/// [ <c>public static object GetDefault(this Type type)</c> ]
/// <para></para>
/// Retrieves the default value for a given Type
/// </summary>
/// <param name="type">The Type for which to get the default value</param>
/// <returns>The default value for <paramref name="type"/></returns>
/// <remarks>
/// If a null Type, a reference Type, or a System.Void Type is supplied, this method always returns null. If a value type
/// is supplied which is not publicly visible or which contains generic parameters, this method will fail with an
/// exception.
/// </remarks>
/// <example>
/// To use this method in its native, non-extension form, make a call like:
/// <code>
/// object Default = DefaultValue.GetDefault(someType);
/// </code>
/// To use this method in its Type-extension form, make a call like:
/// <code>
/// object Default = someType.GetDefault();
/// </code>
/// </example>
/// <seealso cref="GetDefault<T>"/>
public static object GetDefault(this Type type)
{
// If no Type was supplied, if the Type was a reference type, or if the Type was a System.Void, return null
if (type == null || !type.IsValueType || type == typeof(void))
return null;
// If the supplied Type has generic parameters, its default value cannot be determined
if (type.ContainsGenericParameters)
throw new ArgumentException(
"{" + MethodInfo.GetCurrentMethod() + "} Error:\n\nThe supplied value type <" + type +
"> contains generic parameters, so the default value cannot be retrieved");
// If the Type is a primitive type, or if it is another publicly-visible value type (i.e. struct/enum), return a
// default instance of the value type
if (type.IsPrimitive || !type.IsNotPublic)
{
try
{
return Activator.CreateInstance(type);
}
catch (Exception e)
{
throw new ArgumentException(
"{" + MethodInfo.GetCurrentMethod() + "} Error:\n\nThe Activator.CreateInstance method could not " +
"create a default instance of the supplied value type <" + type +
"> (Inner Exception message: \"" + e.Message + "\")", e);
}
}
// Fail with exception
throw new ArgumentException("{" + MethodInfo.GetCurrentMethod() + "} Error:\n\nThe supplied value type <" + type +
"> is not a publicly-visible type, so the default value cannot be retrieved");
}
これらの例では、GetDefaultメソッドは静的クラスDefaultValueに実装されています。次のようなステートメントでこのメソッドを呼び出します。
object Default = DefaultValue.GetDefault(someType);
GetDefaultメソッドをTypeの拡張メソッドとして使用するには、次のように呼び出します。
object Default = someType.GetDefault();
この2番目のタイプ拡張アプローチは、呼び出し時に含まれるDefaultValueクラス修飾子を参照する必要がないため、より単純なクライアントコード構文です。
上記のGetDefaultのランタイム形式は、プリミティブC#の 'default'キーワードと同じセマンティクスで動作し、同じ結果を生成します。
GetDefaultの汎用形式を使用するには、次の関数にアクセスできます。
/// <summary>
/// [ <c>public static T GetDefault< T >()</c> ]
/// <para></para>
/// Retrieves the default value for a given Type
/// </summary>
/// <typeparam name="T">The Type for which to get the default value</typeparam>
/// <returns>The default value for Type T</returns>
/// <remarks>
/// If a reference Type or a System.Void Type is supplied, this method always returns null. If a value type
/// is supplied which is not publicly visible or which contains generic parameters, this method will fail with an
/// exception.
/// </remarks>
/// <seealso cref="GetDefault(Type)"/>
public static T GetDefault<T>()
{
return (T) GetDefault(typeof(T));
}
ジェネリックフォームの呼び出しは次のようになります。
int? inDefaultVal = DefaultValue.GetDefault<int?>();
もちろん、GetDefaultの上記の一般的な形式は、C#ではdefault(T)と同じように機能するため、不要です。 'default'キーワードをサポートしていないが、ジェネリック型をサポートしている.NET言語でのみ役立ちます。ほとんどの場合、汎用形式は不要です。
有用な帰納法は、オブジェクトにそのタイプのデフォルト値が含まれているかどうかを判断する方法です。そのためには、次のIsObjectSetToDefaultメソッドにも依存しています。
/// <summary>
/// [ <c>public static bool IsObjectSetToDefault(this Type ObjectType, object ObjectValue)</c> ]
/// <para></para>
/// Reports whether a value of type T (or a null reference of type T) contains the default value for that Type
/// </summary>
/// <remarks>
/// Reports whether the object is empty or unitialized for a reference type or nullable value type (i.e. is null) or
/// whether the object contains a default value for a non-nullable value type (i.e. int = 0, bool = false, etc.)
/// <para></para>
/// NOTE: For non-nullable value types, this method introduces a boxing/unboxing performance penalty.
/// </remarks>
/// <param name="ObjectType">Type of the object to test</param>
/// <param name="ObjectValue">The object value to test, or null for a reference Type or nullable value Type</param>
/// <returns>
/// true = The object contains the default value for its Type.
/// <para></para>
/// false = The object has been changed from its default value.
/// </returns>
public static bool IsObjectSetToDefault(this Type ObjectType, object ObjectValue)
{
// If no ObjectType was supplied, attempt to determine from ObjectValue
if (ObjectType == null)
{
// If no ObjectValue was supplied, abort
if (ObjectValue == null)
{
MethodBase currmethod = MethodInfo.GetCurrentMethod();
string ExceptionMsgPrefix = currmethod.DeclaringType + " {" + currmethod + "} Error:\n\n";
throw new ArgumentNullException(ExceptionMsgPrefix + "Cannot determine the ObjectType from a null Value");
}
// Determine ObjectType from ObjectValue
ObjectType = ObjectValue.GetType();
}
// Get the default value of type ObjectType
object Default = ObjectType.GetDefault();
// If a non-null ObjectValue was supplied, compare Value with its default value and return the result
if (ObjectValue != null)
return ObjectValue.Equals(Default);
// Since a null ObjectValue was supplied, report whether its default value is null
return Default == null;
}
上記のIsObjectSetToDefault
メソッドは、ネイティブ形式で呼び出すか、Typeクラス拡張としてアクセスできます。
次のようなものはどうですか...
class Program
{
static void Main(string[] args)
{
PrintDefault(typeof(object));
PrintDefault(typeof(string));
PrintDefault(typeof(int));
PrintDefault(typeof(int?));
}
private static void PrintDefault(Type type)
{
Console.WriteLine("default({0}) = {1}", type,
DefaultGenerator.GetDefaultValue(type));
}
}
public class DefaultGenerator
{
public static object GetDefaultValue(Type parameter)
{
var defaultGeneratorType =
typeof(DefaultGenerator<>).MakeGenericType(parameter);
return defaultGeneratorType.InvokeMember(
"GetDefault",
BindingFlags.Static |
BindingFlags.Public |
BindingFlags.InvokeMethod,
null, null, new object[0]);
}
}
public class DefaultGenerator<T>
{
public static T GetDefault()
{
return default(T);
}
}
次の出力が生成されます。
default(System.Object) =
default(System.String) =
default(System.Int32) = 0
default(System.Nullable`1[System.Int32]) =
「デフォルト値」とはどういう意味ですか?すべての参照タイプ(「クラス」)にはデフォルト値としてnullがありますが、すべての値タイプには この表 に従ってデフォルト値があります。
以下は、null許容型のデフォルト値を返す関数です(つまり、Decimal
とDecimal?
の両方に対して0を返します)。
public static object DefaultValue(Type maybeNullable)
{
Type underlying = Nullable.GetUnderlyingType(maybeNullable);
if (underlying != null)
return Activator.CreateInstance(underlying);
return Activator.CreateInstance(maybeNullable);
}