首页 > Windows开发 > 详细

C#中out和ref之间的区别

时间:2018-02-27 22:46:36      阅读:191      评论:0      收藏:0      [点我收藏+]

ref参数是引用,out参数为输出参数。

ref的使用:使用ref进行参数的传递时,该参数在创建时,必须设置其初始值,且ref侧重于修改;

out的使用: 采用out参数传递时,该参数在创建时,可以不设置初始值,但是在方法中必须初始化,out侧重于输出;

   public class Base
    {  
        public void outMethod(out string x)
        {
            x = "this is outMethod";
        } 
        public void refMethod(ref string x)
        {
            x = "this is refMethod";
        }
    }

  

        static void Main(string[] args)
        {
            
            Base ba = new Base();

            string i;//可以不初始化。因为out
            ba.outMethod(out i);
            Console.WriteLine(i);

            string j = "0";//必须初始化,因为ref
            ba.refMethod(ref j);
            Console.WriteLine(j); 
            Console.ReadLine();
        }

  

C#中out和ref之间的区别

原文:https://www.cnblogs.com/lijianhong90/p/8481139.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!