码迷,mamicode.com
首页 > 其他好文 > 详细

ref,out关键字的作用

时间:2014-11-27 21:50:29      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   strong   on   div   log   

ref是传递参数的地址,out是返回值,两者有一定的相同之处,不过也有不同点。

使用ref前必须对变量赋值,out不用

out的函数会清空变量,即使变量已经赋值也不行,退出函数时所有out引用的变量都要赋值,ref引用的可以修改,也可以不修改。

区别可以参看下面的代码:
        static void outTest(out int x, out int y)
        {//离开这个函数前,必须对x和y赋值,否则会报错。 
            //y = x; 
            //上面这行会报错,因为使用了out后,x和y都清空了,需要重新赋值,即使调用函数前赋过值也不行 
            x = 1;
            y = 2;
        }
        static void refTest(ref int x, ref int y)
        {
            x = 1;
            y = x;
        }
        public static void Main()
        {
            //out test
            int a, b;
            //out使用前,变量可以不赋值
            outTest(out a, out b);
            Console.WriteLine("a={0};b={1}", a, b);
            int c = 11, d = 22;
            outTest(out c, out d);
            Console.WriteLine("c={0};d={1}", c, d);

            //ref test
            int m, n;
            //refTest(ref m, ref n); 
            //上面这行会出错,ref使用前,变量必须赋值

            int o = 11, p = 22;
            refTest(ref o, ref p);
            Console.WriteLine("o={0};p={1}", o, p);
        }

 



ref,out关键字的作用

标签:style   blog   color   使用   sp   strong   on   div   log   

原文地址:http://www.cnblogs.com/huxiaolin/p/4127159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!