C# 反射

今天上课加深了一下反射的学习

首先构建一个工程写几个对象来做测试,可以多写几个

    //具体内容(可以推出其他)
    //接口
    interface IAirLine
    {
        string PrintBoardingCheck();

    }
    //实现接口
     class SouthAirLine : IAirLine
    {
        public string PrintBoardingCheck()
        {
            return "打印南航登记牌";
        }

    }

之后
将工程生成dll文件,引用到反射的工程中


    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("please input num");
            RefectType ftype = new RefectType();
            int i = Convert.ToInt32(Console.ReadLine());
            Program pr = new Program();
            string _select = pr.convertToClassName(i);

            Console.WriteLine("please input your name");
            string pasName = Console.ReadLine();

            string print = ftype.Test_Reflection_ByType(_select);

            Console.WriteLine(print);
        }
        public string convertToClassName(int index)
        {
            string className = "";
            switch (index)
            {
                case 0:
                    {
                        className = "ChinaAirLine";
                        break;
                    }
                case 1:
                    {
                        className = "EastAirLine";
                        break;
                    }

                case 2:
                    {
                        className = "NorthAirLine";
                        break;
                    }
            }
            return className;
        }
    }
    class RefectType
    {
        //无参数反射 当要反射的函数为无参时
        public string Test_Reflection_ByType(string name)
        {
            //获取dll

            //引用导入
            Assembly _tempAss = Assembly.Load("AirLine");

            //路径导入
            //Assembly _tempAss = Assembly.LoadFile(@"E:\AirLine.dll");
            object _airLine = _tempAss.CreateInstance(string.Format("AirLine.{0}", name));
            //动态获取到对象后,获取当前实例类型
            Type _Temp_Type = _airLine.GetType();
            object _tempString;
            //反射对象,无参数
            _tempString = _Temp_Type.InvokeMember("PrintBoardingCheck", BindingFlags.InvokeMethod, null, _airLine, null);
            return _tempString.ToString();
        }
    }

无参完成,那么接下来试试有参的

  //具体内容(可以推出其他)
    //接口
    interface IAirLine
    {
        string PrintBoardingCheck(string name);

    }
    //实现接口
     class SouthAirLine : IAirLine
    {
        private string _name;
        public string Name { get => _name; set => _name = value; }

        public SouthAirLine(){}
        public SouthAirLine(string name)
        {
            this._name = name;
        }
        public string PrintBoardingCheck(string name)
        {
            string printInfo = "welcome" + name + "\r\n" + "please output southAirLine card";
            return printInfo;
        }
    }

main函数中改一下

           //main中将第一个print注释掉
            string print = ftype.Test_Reflection_ByType_Parameter(_select,pasName);

添加个新反射方法

        //有参反射
        public string Test_Reflection_ByType_Parameter(string _temp,string PassengerName)
        {
            Assembly tempAss = Assembly.Load("AirLine");
            object[] _params = new object[1];
            _params[0] = PassengerName;

            object _obj = tempAss.CreateInstance(string.Format("AirLine.{0}", _temp), true, BindingFlags.Default, null, _params, null, null);

            Type _temp_Type = _obj.GetType();

            object[] _method_params = new object[1];
            _method_params[0] = PassengerName;
            object _tempString = _temp_Type.InvokeMember("PrintBoardingCheck", BindingFlags.InvokeMethod, null, _obj, _method_params);

            return _tempString.ToString();
        }

大功告成

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值