gpt4 book ai didi

c# - 创建一个将一种类型的函数转换为另一种类型的函数

转载 作者:行者123 更新时间:2023-11-30 17:51:49 24 4
gpt4 key购买 nike

对于一些奇特的反射东西,我有一个 Func 类型的函数,需要将它传递给一个接受 Func 类型的函数,其中 T 直到运行时才知道。例如:

public bool MyOperation(Func<string,bool> op) {
return _myValues.Any(op);
}

public static bool InvokeOperationMethod(MethodInfo info, object obj,Func<object,bool> opAsObject)
{
info.Invoke(obj, opAsObject);
}

问题是因为我有一个较弱类型的 lambda,我无法将它作为更强类型的参数传递。因此,我尝试制作一个帮助器,它会创建一个函数,将较弱类型的 lambda 转换为更强类型。例如,我可以调用

var converter = CreateConverter(typeof(string));
Func<object,bool> asObject = o => o.ToString() == "a string"; //Dump example
Func<string,bool> asString = (Func<string,bool>)converter(asObject);
Assert.IsTrue(asInt("a string"));

当然,在实际代码中,直到运行时才知道目标类型,并且实际谓词不是一些微不足道的测试。

这是我的尝试:

/// <summary>
/// Converts a predicate of Func<object,bool> to
/// Func<Type,bool> of the given type.
/// </summary>
/// <param name="destType">Type of the dest.</param>
/// <param name="predicate">The predicate.</param>
/// <returns></returns>
public static TransformPredicate CreateConverter(Type destType)
{
// This essentially creates the following lambda, but uses destType instead of T
// private static Func<Func<object, bool>, Func<T, bool>> Transform<T>()
// {
// return (Func<object,bool> input) => ((T x) => input(x));
// }
var input = Expression.Parameter(typeof(Func<object, bool>), "input");

var x = Expression.Parameter(destType, "x");
var convert = Expression.Convert(x, typeof(object));
var callInputOnX = Expression.Invoke(input, convert);
var body2 = Expression.Lambda(callInputOnX, x);
var body1 = Expression.Lambda(typeof(TransformPredicate),body2, input);
return (TransformPredicate) body1.Compile();
}

public delegate object TransformPredicate(Func<object,bool> weak);

这实际上工作得很好,只是它运行得非常慢,因为它在每次调用时都隐式调用 CreateDelegate。所以我尝试通过添加自己调用 CreateDelegate:

var destFunc = typeof(Func<,>).MakeGenericType(destType, typeof(bool));
var endType = typeof(Func<,>).MakeGenericType(typeof(Func<object, bool>), destFunc);
return (TransformPredicate)compiled.Method.CreateDelegate(endType);

这会导致错误:

System.NotSupportedException: Derived classes must provide and implementation.

有什么想法可以自己调用 CreateDelegate 吗?

最佳答案

其实只要目标类型是引用类型就什么都不用做。类型参数 TFunc<T, TResult>逆变,这意味着您可以直接进行转换。因此,以下代码可以正常工作:

Func<object,bool> asObject = o => o.ToString() == "a string";
Func<string,bool> asString = (Func<string,bool>)asObject;
asString("a string");

编辑: 进行转换的不是编译器,而是理解 Func<object, bool> 的 CLR可以安全地转换为 Func<string, bool> .因此,以下代码可以正常工作:

class Program
{
static void Main()
{
InvokeOperationMethod(
typeof(Program).GetMethod("MyOperation"),
new Program(), o => o.ToString() == "42");
}

public bool MyOperation(Func<string, bool> op)
{
return op("43");
}

public static bool InvokeOperationMethod(
MethodInfo info, object obj, Func<object, bool> opAsObject)
{
return (bool)info.Invoke(obj, new object[] { opAsObject });
}
}

编辑 2: 如果您也需要将其用于值类型,则需要以某种方式将参数装箱。拳击本身很简单:

private static Func<T, bool> BoxParameter<T>(Func<object, bool> op)
{
return x => op(x);
}

但是你需要调用它,因为你不知道 T在编译时,你需要为此使用反射。像这样的东西:

public static bool InvokeOperationMethod(
MethodInfo method, object obj, Func<object, bool> opAsObject)
{
var targetType = method.GetParameters()
.Single()
.ParameterType
.GetGenericArguments()[0];

object opAsT;
if (targetType.IsValueType)
{
opAsT =
typeof(Program).GetMethod("BoxParameter",
BindingFlags.NonPublic | BindingFlags.Static)
.MakeGenericMethod(targetType)
.Invoke(null, new object[] {opAsObject});
}
else
{
opAsT = opAsObject;
}

return (bool)method.Invoke(obj, new[] { opAsT });
}

关于c# - 创建一个将一种类型的函数转换为另一种类型的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19016898/

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