gpt4 book ai didi

c# - 实例化通用委托(delegate)和访问属性 getter 的最佳实践

转载 作者:太空狗 更新时间:2023-10-29 23:03:15 26 4
gpt4 key购买 nike

我想创建委托(delegate)来访问不同对象的属性,而无需提前知道它们。

我有以下定义

public delegate T MyMethod<K, T>(K data);

public static MyMethod<K, T> CreatePropertyGetter<K, T>(PropertyInfo property)
{
MethodInfo mi = property.DeclaringType.GetMethod("get_" + property.Name);
return (MyMethod<K, T>)Delegate.CreateDelegate(typeof(MyMethod<K, T>), mi);
}

其中 T 可以是小数、字符串、日期时间或整数

我有一些初始化代码将根据我的对象的反射属性创建 MyMethod 委托(delegate),如下所示:

foreach (PropertyInfo property in entityType.GetProperties())
{
switch (property.PropertyType.Name)
{
case "System.Decimal":
return CreatePropertyGetter<T, decimal>(property);
case "System.DateTime":
return CreatePropertyGetter<T, DateTime>(property);
case "System.String":
return CreatePropertyGetter<T, DateTime>(property);
}
}

有没有更好的办法

  1. 创建属性 getter ?
  2. 枚举硬编码为字符串的受支持属性类型?

编辑:

我关心的是性能,因为这些委托(delegate)会被频繁调用(滴答场景),所以任何转换都会减慢速度。虽然需要更优雅的解决方案,但性能仍然是我主要关心的问题

我在 Code Review 上发布了同样的问题,因此考虑到回复 there,我将其标记为已解决

最佳答案

这是可以发布在 Code Review 上的东西,实际上,我已经发布了 a similar question .我相信我使用表达式树的方法已经改进了您的方法。

使用示例:

Action<object> compatibleExecute =
DelegateHelper.CreateCompatibleDelegate<Action<object>>( owner, method );

转换在必要时完成。这里传递给函数的方法可以有任何类型的参数。

更新:

我还没有对此进行测试,但对于您的情况,您可以尝试以下操作:

Func<object> getter =
DelegateHelper.CreateCompatibleDelegate<Func<object>>( owner, method );

method 必须设置为您检索的 getter。 owner 必须设置为您的对象的实例。如果要允许将所有者作为参数传递给委托(delegate),则必须调整代码。 Vladimir Matveev 在 the article of Jon Skeet 上的评论中给出了一个例子。 .

static Func<T, object, object> MagicMethod<T>(MethodInfo method)    
{
var parameter = method.GetParameters().Single();
var instance = Expression.Parameter(typeof (T), "instance");
var argument = Expression.Parameter(typeof (object), "argument");

var methodCall = Expression.Call(
instance,
method,
Expression.Convert(argument, parameter.ParameterType)
);

return Expression.Lambda<Func<T, object, object>>(
Expression.Convert(methodCall, typeof (object)),
instance, argument
).Compile();
}

关于c# - 实例化通用委托(delegate)和访问属性 getter 的最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5221904/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com