web-dev-qa-db-ja.com

デフォルトと同等のプログラムによる(Type)

私はリフレクションを使ってTypeのプロパティをループし、特定の型をデフォルトに設定します。今、私はタイプを切り替えて明示的にdefault(Type)を設定することができますが、私はむしろ1行でそれをしたいです。デフォルトと同等のプログラムによるものはありますか?

477
tags2k
  • 値型の場合は Activator.CreateInstance を使用すればうまくいきます。
  • 参照型を使うときは単にnullを返す
public static object GetDefault(Type type)
{
   if(type.IsValueType)
   {
      return Activator.CreateInstance(type);
   }
   return null;
}

.net標準などの新しいバージョンの.netでは、type.IsValueTypetype.GetTypeInfo().IsValueTypeと書く必要があります。

644
Dror Helper

リフレクションを指定してdefault(T)を返すメソッドを呼び出さないのはどうしてですか?次のものと一緒に任意の型のGetDefaultを使用できます。

    public object GetDefault(Type t)
    {
        return this.GetType().GetMethod("GetDefaultGeneric").MakeGenericMethod(t).Invoke(this, null);
    }

    public T GetDefaultGeneric<T>()
    {
        return default(T);
    }
96
drake7707

PropertyInfo.SetValue(obj, null)を使うことができます。値型で呼び出された場合はデフォルトが与えられます。この動作は .NET 4.0では そして .NET 4.5では で文書化されています。

80
JoelFan

.NET 4.0以降を使用していて、コード外で定義された規則の体系化ではないプログラムバージョンが必要な場合は、 Expression を作成してコンパイルして実行できます。 - 飛ぶ。

次の拡張メソッドは Type を取り、 default(T) からDefaultクラスの Expressionメソッド から返される値を取得します。

public static T GetDefaultValue<T>()
{
    // We want an Func<T> which returns the default.
    // Create that expression here.
    Expression<Func<T>> e = Expression.Lambda<Func<T>>(
        // The default value, always get what the *code* tells us.
        Expression.Default(typeof(T))
    );

    // Compile and return the value.
    return e.Compile()();
}

public static object GetDefaultValue(this Type type)
{
    // Validate parameters.
    if (type == null) throw new ArgumentNullException("type");

    // We want an Func<object> which returns the default.
    // Create that expression here.
    Expression<Func<object>> e = Expression.Lambda<Func<object>>(
        // Have to convert to object.
        Expression.Convert(
            // The default value, always get what the *code* tells us.
            Expression.Default(type), typeof(object)
        )
    );

    // Compile and return the value.
    return e.Compile()();
}

Typeに基づいて上記の値をキャッシュする必要がありますが、これを多数のTypeインスタンスに対して呼び出していて、常に使用していない場合は、キャッシュによって消費されるメモリがメリットを上回る可能性があります。

54
casperOne

なぜジェネリック医薬品は外に出ていると言うのですか?

    public static object GetDefault(Type t)
    {
        Func<object> f = GetDefault<object>;
        return f.Method.GetGenericMethodDefinition().MakeGenericMethod(t).Invoke(null, null);
    }

    private static T GetDefault<T>()
    {
        return default(T);
    }
37

これはFlemのソリューションを最適化したものです。

using System.Collections.Concurrent;

namespace System
{
    public static class TypeExtension
    {
        //a thread-safe way to hold default instances created at run-time
        private static ConcurrentDictionary<Type, object> typeDefaults =
           new ConcurrentDictionary<Type, object>();

        public static object GetDefaultValue(this Type type)
        {
            return type.IsValueType
               ? typeDefaults.GetOrAdd(type, Activator.CreateInstance)
               : null;
        }
    }
}
22
cuft

選ばれた答えは良い答えですが、返されたオブジェクトには注意してください。

string test = null;
string test2 = "";
if (test is string)
     Console.WriteLine("This will never be hit.");
if (test2 is string)
     Console.WriteLine("Always hit.");

外挿しています...

string test = GetDefault(typeof(string));
if (test is string)
     Console.WriteLine("This will never be hit.");
7
BSick7

式はここで役立ちます:

    private static Dictionary<Type, Delegate> lambdasMap = new Dictionary<Type, Delegate>();

    private object GetTypedNull(Type type)
    {
        Delegate func;
        if (!lambdasMap.TryGetValue(type, out func))
        {
            var body = Expression.Default(type);
            var lambda = Expression.Lambda(body);
            func = lambda.Compile();
            lambdasMap[type] = func;
        }
        return func.DynamicInvoke();
    }

このスニペットはテストしませんでしたが、参照型に対して "型付き" nullを生成する必要があると思います。

5

まだ単純でエレガントなものはまだ見つかりませんが、私は1つの考えを持っています:あなたが設定したいプロパティのタイプを知っていれば、あなたはあなた自身のdefault(T)を書くことができます。 2つのケースがあります - Tは値型、Tは参照型です。あなたはT.IsValueTypeをチェックすることによってこれを見ることができます。 Tが参照型の場合は、単純にnullに設定できます。 Tが値型の場合、デフォルトのパラメータなしのコンストラクタが使用され、これを呼び出して「空白」の値を取得できます。

3
Vilx-

私はこのように同じ仕事をします。

//in MessageHeader 
   private void SetValuesDefault()
   {
        MessageHeader header = this;             
        Framework.ObjectPropertyHelper.SetPropertiesToDefault<MessageHeader>(this);
   }

//in ObjectPropertyHelper
   public static void SetPropertiesToDefault<T>(T obj) 
   {
            Type objectType = typeof(T);

            System.Reflection.PropertyInfo [] props = objectType.GetProperties();

            foreach (System.Reflection.PropertyInfo property in props)
            {
                if (property.CanWrite)
                {
                    string propertyName = property.Name;
                    Type propertyType = property.PropertyType;

                    object value = TypeHelper.DefaultForType(propertyType);
                    property.SetValue(obj, value, null);
                }
            }
    }

//in TypeHelper
    public static object DefaultForType(Type targetType)
    {
        return targetType.IsValueType ? Activator.CreateInstance(targetType) : null;
    }
3
kpollock

Drorの答えと同じですが、拡張方法としては:

namespace System
{
    public static class TypeExtensions
    {
        public static object Default(this Type type)
        {
            object output = null;

            if (type.IsValueType)
            {
                output = Activator.CreateInstance(type);
            }

            return output;
        }
    }
}
2
Paul Fleming

@ Rob Fonseca-Ensorの解決法 へのわずかな調整:私はGetMethodの代わりにGetRuntimeMethodを使っているので、以下の拡張方法も.Net Standardで動作します。

public static class TypeExtensions
{
    public static object GetDefault(this Type t)
    {
        var defaultValue = typeof(TypeExtensions)
            .GetRuntimeMethod(nameof(GetDefaultGeneric), new Type[] { })
            .MakeGenericMethod(t).Invoke(null, null);
        return defaultValue;
    }

    public static T GetDefaultGeneric<T>()
    {
        return default(T);
    }
}

...そして品質を気にする人向けの単体テスト:

[Fact]
public void GetDefaultTest()
{
    // Arrange
    var type = typeof(DateTime);

    // Act
    var defaultValue = type.GetDefault();

    // Assert
    defaultValue.Should().Be(default(DateTime));
}
0
thomasgalliker
 /// <summary>
    /// returns the default value of a specified type
    /// </summary>
    /// <param name="type"></param>
    public static object GetDefault(this Type type)
    {
        return type.IsValueType ? (!type.IsGenericType ? Activator.CreateInstance(type) : type.GenericTypeArguments[0].GetDefault() ) : null;
    }
0
Kaz-LA