C# ref,params,out 修饰符

ref 就是 在方法参数里定义时,必须要在调用方法传参之前,给变量赋值
如下:


static void Main(string[] args)
        {

           

            int[] a = { 1, 23, 45 };
            int b;
            int c;
          
            RefParamFun(ref d, ref e);
            Console.WriteLine(d);
            Console.WriteLine(e);
            Console.ReadKey();
        }
        /**
        * ref 方法外
        * 必须赋值
        */
        public static void RefParamFun(ref int  a, ref int b )
        {
            a = a + b;
            b = a - b;
            a = a - b;
        }

params 就是 可以在调用方法是,数组的成员可以列出来,使用方法如下:


static void Main(string[] args)
        {
            paramsPamFun(2, 2, 3, 4, 5);

            Console.ReadKey();
        }
		/**
         * 可变数组参数
         */
        public static void paramsPamFun(int a ,params int [] b)
        {
            Console.WriteLine(a);

            for (int i = 0; i < b.Length; i++)
            {
                Console.WriteLine(b[i]);
            }
        }

out 和ref 相反,调用方法参数被out修饰的方法时,被out修饰的参数变量,在声明后可以不用赋值,但是在方法体内必须赋值,使用方法如下:

static void Main(string[] args)
        {

          

            int[] a = { 1, 23, 45 };
            int b;
            int c;
            OutParamFun(a, out  b, out c);
            Console.WriteLine(b);
            Console.WriteLine(c);

           

            Console.ReadKey();
        }
        /**
         * out 就是把参数传出去
         * 方法内必须赋值
         */
        public static void OutParamFun(int[] a, out int b ,out int c)
        {
            b = a[0];
            c = a[1];
        }

以上就是三种修饰符的使用方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值