码迷,mamicode.com
首页 > Windows程序 > 详细

C#中out和ref之间的区别

时间:2018-02-27 23:19:22      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:输出参数   new   oid   必须   c#   使用   引用   参数传递   方法   

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之间的区别

标签:输出参数   new   oid   必须   c#   使用   引用   参数传递   方法   

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

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