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

传递参数ref与输出参数out

时间:2018-11-02 17:58:08      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:改变   color   span   key   code   全局   test   write   OLE   

ref与out都可以在全局中改变传入的参数的值

但使用ref时,传入的参数必须已赋值,否则是非法的
使用out时,传入参数可以未赋值,但无论如何都必须在方法中赋值

例:

 1 static double a = 10;
 2 static double b = 20;
 3 
 4 static void Test(ref double x,out double y)
 5 {
 6     y = 0;  //必须要在方法中赋值一下
 7     x *= 10;
 8     y *= 20;
 9     Console.WriteLine(x);
10     Console.WriteLine(y);
11 }
12 static void Main(string[] args)
13 {
14     Console.WriteLine(a);
15     Console.WriteLine(b);
16 
17     Test(ref a,out b);
18     Console.WriteLine(a);
19     Console.WriteLine(b);
20     Console.ReadKey();
21 }

 

传递参数ref与输出参数out

标签:改变   color   span   key   code   全局   test   write   OLE   

原文地址:https://www.cnblogs.com/xt112233/p/9897372.html

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