zoukankan      html  css  js  c++  java
  • 利用表达式数调用方法

    照着 利用表达式树构建委托改善反射性能 做了一点小更改正好适合自己用

        public static class DynamicMethodBuilder
        {
            public static Delegate BuildDynamicDelegate(MethodInfo methodInfo, ConstructorInfo constructorInfo = null)
            {
                if (methodInfo == null)
                    throw new ArgumentNullException("methodInfo");
                List<ParameterExpression> paramExpressions = methodInfo.GetParameters().Select((p, i) =>
                {
                    var name = "param" + (i + 1);
                    return Expression.Parameter(p.ParameterType, name);
                }).ToList();
                MethodCallExpression callExpression;
                if (methodInfo.IsStatic)
                {
                    //Call(params....)
                    callExpression = Expression.Call(methodInfo, paramExpressions);
                }
                else
                {
                    if (constructorInfo != null)
                    {
                        //Instance(params).Call(params....)
                        List<ParameterExpression> constructorParamExpressions = constructorInfo.GetParameters().Select((p, i) =>
                        {
                            var name = "constparam" + (i + 1);
                            return Expression.Parameter(p.ParameterType, name);
                        }).ToList();
                        callExpression = Expression.Call(Expression.New(constructorInfo, constructorParamExpressions), methodInfo, paramExpressions);
                        paramExpressions.InsertRange(0, constructorParamExpressions);
                    }
                    else
                    {
                        callExpression = Expression.Call(Expression.New(methodInfo.ReflectedType), methodInfo, paramExpressions);
                    }
                }
                return Expression.Lambda(callExpression, paramExpressions).Compile();
            } 
        }

    测试:

        public class Baby
        {
            private readonly DateTime _birthDay;
            public Baby(DateTime birthDay)
            {
                _birthDay = birthDay;
            }
            public Baby()
            {
                _birthDay = DateTime.Now;
            }
    
            public string GetBabyInfo(string name, int sex) => $"姓名:{name} , 出生天数:{ DateTime.Now- _birthDay} ,性别 :{(sex == 1 ? "男" : "女")}";
    
        }
    
        class Program
        {
            static void Main(string[] args)
            {
                Type targetType = Assembly.GetExecutingAssembly().GetType("ConsoleApplication1.Baby");
    
                MethodInfo methodInfo = targetType.GetMethod("GetBabyInfo", new[] { typeof(string), typeof(int) });
                ConstructorInfo constructor = targetType.GetConstructor(new[] { typeof(DateTime) });
    
                WithConstructor(methodInfo, constructor);
                WithOutConstructor(methodInfo);
                Console.ReadKey();
            }
            static void WithConstructor(MethodInfo methodInfo, ConstructorInfo constructor)
            {
                var func = (Func<DateTime, string, int, string>)DynamicMethodBuilder.BuildDynamicDelegate(methodInfo, constructor);
                Console.WriteLine(func(DateTime.Now.AddDays(-100), "糖墩儿", 1));
            }
            static void WithOutConstructor(MethodInfo methodInfo)
            {
                var func = (Func<string, int, string>)DynamicMethodBuilder.BuildDynamicDelegate(methodInfo);
                Console.WriteLine(func("糖墩儿", 1));
            }
        }
    

      

  • 相关阅读:
    Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2) D
    HDU 2036 求任意多边形面积板子题
    HDU 6703 array(主席树)
    2019牛客暑期多校训练营(第九场)H Cutting BamboosO(二分、主席树)
    lintcode-425-电话号码的字母组合
    lintcode-81-数据流中位数
    lintcode-424-逆波兰表达式求值
    lintcode-423-有效的括号序列
    lintcode-422-最后一个单词的长度
    lintcode-421-简化路径
  • 原文地址:https://www.cnblogs.com/ylsforever/p/6956626.html
Copyright © 2011-2022 走看看