三个程序比较

    技术2022-05-11  149

    using  System; class  Method1 {    static int addi(params int[] values)    {    int sum=0;    foreach (int i in values)        sum+=i;    return sum;    }    static void Main()    {    Console.WriteLine(addi(3,4,7));    }} // 为什么不能去掉PARAMS using  System; class  Method2 {    static void Arrays( int[] values)    {    foreach (int i in values)    Console.WriteLine(i);    }    static void Main()    {        int [] vaule1=new int []{100,200,300,400};        Arrays(vaule1);        }} // 加与不加PARAMES都能通过编译。 using  System; public   class  Method3 {    static void  PrintArr(params int[] arr)        {                for (int i=0;i<arr.Length;i++)                    arr[i]=i;        }        static void Main()            {                int [] arr={100,200,300};                PrintArr(arr);                foreach(int i in arr)                Console.Write(i+",");            }} //加与不加PARAMES都能通过编译。

     D:/Project/handing>Method2100200300400

    D:/Project/handing>Method30,1,2,D:/Project/handing>Method30,1,2,D:/Project/handing>Method114

    D:/Project/handing>

    有点不能理解.

    ------------------------------------------------------------------------------------

    params 有什么用?

    答:

    params 关键字在方法成员的参数列表中使用,为该方法提供了参数个数可变的能力

    它在只能出现一次并且不能在其后再有参数定义,之前可以

    示例:

    using System; using System.Collections.Generic; using System.Text;   namespace ConsoleApplication1 {     class App     {         //第一个参数必须是整型,但后面的参数个数是可变的。         //而且由于定的是object数组,所有的数据类型都可以做为参数传入         public static void UseParams(int id, params object[] list)         {             Console.WriteLine(id);             for (int i = 0; i < list.Length; i++)             {                 Console.WriteLine(list[i]);             }         }           static void Main()         {             //可变参数部分传入了三个参数,都是字符串类型             UseParams(1, "a", "b", "c");             //可变参数部分传入了四个参数,分别为字符串、整数、浮点数和双精度浮点数数组             UseParams(2, "d", 100, 33.33, new double[] { 1.1, 2.2 });               Console.ReadLine();         }     } } 结果: 1 a b c 2 d 100 33.33 System.Double[] 

     

    -----------------------foreach实例

    什么是反射?

    答:

    反射,Reflection,通过它我们可以在运行时获得各种信息,如程序集、模块、类型、字段、属性、方法和事件

    通过对类型动态实例化后,还可以对其执行操作

    一般用于插件式框架程序和设计模式的实现,当然反射是一种手段可以充分发挥其能量来完成你想做的任何事情(前面好象见过一位高人用反射调用一个官方类库中未说明的函数。。。)

    示例:

    using System; using System.Collections.Generic; using System.Text;   namespace Example25Lib {     public class Class1     {         private string name;         private int age;           //如果显式的声明了无参数构造函数,客户端只需要用程序集的CreateInstance即可实例化该类         //在此特意不实现,以便在客户调用端体现构造函数的反射实现         //public Class1()         //{         //}         public Class1(string Name, int Age)         {             name = Name;             age = Age;         }         public void ChangeName(string NewName)         {             name = NewName;         }         public void ChangeAge(int NewAge)         {             age = NewAge;         }         public override string ToString()         {             return string.Format("Name: {0}, Age: {1}", name, age);         }     } } 反射实例化对象并调用其方法,属性和事件的反射调用略去

    using System; using System.Collections.Generic; using System.Text;   //注意添加该反射的命名空间 using System.Reflection;   namespace Example25 {     class Program     {         static void Main(string[] args)         {             //加载程序集             Assembly tmpAss = Assembly.LoadFile(AppDomain.CurrentDomain.BaseDirectory + "Example25Lib.dll");               //遍历程序集内所有的类型,并实例化             Type[] tmpTypes = tmpAss.GetTypes();             foreach (Type tmpType in tmpTypes)             {                 //获取第一个类型的构造函数信息                 ConstructorInfo[] tmpConsInfos = tmpType.GetConstructors();                 foreach (ConstructorInfo tmpConsInfo in tmpConsInfos)                 {                     //为构造函数生成调用的参数集合                     ParameterInfo[] tmpParamInfos = tmpConsInfo.GetParameters();                      object[] tmpParams = new object[tmpParamInfos.Length];                     for (int i = 0; i < tmpParamInfos.Length; i++)                     {                         tmpParams[i] = tmpAss.CreateInstance(tmpParamInfos[i].ParameterType.FullName);                         if (tmpParamInfos[i].ParameterType.FullName == "System.String")                         {                             tmpParams[i] = "Clark";                         }                     }                       //实例化对象                     object tmpObj = tmpConsInfo.Invoke(tmpParams);                     Console.WriteLine(tmpObj);                       //获取所有方法并执行                     foreach (MethodInfo tmpMethod in tmpType.GetMethods())                     {                         //为方法的调用创建参数集合                         tmpParamInfos = tmpMethod.GetParameters();                         tmpParams = new object[tmpParamInfos.Length];                         for (int i = 0; i < tmpParamInfos.Length; i++)                         {                             tmpParams[i] = tmpAss.CreateInstance(tmpParamInfos[i].ParameterType.FullName);                             if (tmpParamInfos[i].ParameterType.FullName == "System.String")                             {                                 tmpParams[i] = "Clark Zheng";                             }                             if (tmpParamInfos[i].ParameterType.FullName == "System.Int32")                             {                                 tmpParams[i] = 27;                             }                         }                         tmpMethod.Invoke(tmpObj, tmpParams);                     }                       //调用完方法后再次打印对象,比较结果                     Console.WriteLine(tmpObj);                 }             }               Console.ReadLine();         }     } } 结果: Name: Clark, Age: 0 Name: Clark Zheng, Age: 27 


    最新回复(0)