csharp Out Ref Params

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Out Ref Params相关的知识,希望对你有一定的参考价值。

 class Program
    {
        static void Main(string[] args)
        {
            //out的用法
            int i = 1;
            int x;
            Add(i, out x); //x被带入计算并被返回,输出11
            Console.WriteLine(x);
            //ref的用法
            AddTen(ref i, ref x);
            Console.WriteLine(i);   //输出11
            Console.WriteLine(x);   //输出21

            //params的用法
            int[] intArray = new int[] { i, i + 1, i + 2 };
            AddParams(i, intArray); //被标注了params的数组是可变长的,是null的也可以
            Console.ReadKey();
        }

        public static void Add(int i, out int j )
        {
            j = i + 10;
        }

        public static void AddTen(ref int i, ref int j)
        {
            i = i + 10;
            j = j + 10;
        }

        public static void AddParams(int i, params int[] intArray)
        {
            Console.WriteLine(intArray[1]);
        } 
    }

以上是关于csharp Out Ref Params的主要内容,如果未能解决你的问题,请参考以下文章

ref out params

ref 和 out 的用法和区别以及params用法

out ref params 的使用

浅谈c#的三个高级参数ref out 和Params

浅谈c#的三个高级参数ref out 和Params

out ref 和 params 的区别和用法