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

ref、out 修饰符

时间:2017-03-13 23:52:40      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:key   bsp   str   log   结束   ogr   传递参数   pre   lin   

ref参数和out参数类似,除了:

1、ref参数要求在传入函数之前赋值,而out参数不用

2、out参数必须在函数结束之前被赋值,而ref参数不用

 

ref传递参数 若int x;则报错

 1     class Program
 2     {
 3         static void Main(string[] args)
 4         {
 5             int x=0;
 6             Foo(ref x);
 7             Console.WriteLine(x);//1
 8             Console.ReadKey();
 9         }
10         static void Foo(ref int y)
11         {
12             y = 1;
13         }
14     }

out传递参数 若去掉y=1;则报错

 1     class Program
 2     {
 3         static void Foo(out int y)
 4         {
 5             y = 1;
 6         }
 7         static void Main(string[] args)
 8         {
 9             int x;
10             Foo(out x);
11             Console.WriteLine(x);//1
12             Console.ReadKey();
13         }
14     }

 

ref、out 修饰符

标签:key   bsp   str   log   结束   ogr   传递参数   pre   lin   

原文地址:http://www.cnblogs.com/KSalomo/p/6545372.html

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