对象和类型(数组、ref、out)_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 对象和类型(数组、ref、out)

对象和类型(数组、ref、out)

 2017/7/30 2:38:45  derickzhao  程序员俱乐部  我要评论(0)
  • 摘要:1classProgram2{3//数组是引用类型4//如果把数组或类等其他引用类型传递给方法,对应的方法就会使用该引用类型改编数组中值,5//而新值会反射到原始数组上6staticvoidSomeFunction(int[]ints,inti)7{8ints[0]=100;9i=10;10}1112//ref参数;使用关键字的参数会,方法会影响到对应参数的数值改变13//而且ref参数需要初始化14staticvoidSomeFunction1(refintj)15{16j=100;17
  • 标签:数组
class="code_img_closed" src="/Upload/Images/2017073002/0015B68B3C38AA5B.gif" alt="">
 1 class Program
 2     {
 3         //数组是引用类型
 4         //如果把数组或类等其他引用类型传递给方法,对应的方法就会使用该引用类型改编数组中值,
 5         //而新值会反射到原始数组上
 6         static void SomeFunction(int[] ints, int i)
 7         {
 8             ints[0]= 100;
 9             i = 10;
10         }
11 
12         //ref参数;使用关键字的参数会,方法会影响到对应参数的数值改变
13         //而且ref参数需要初始化
14         static void SomeFunction1(ref int j)
15         {
16             j = 100;
17         }
18 
19         //out参数;out参数可以不需要初始化
20         //该参数通过引用传递,方法返回w是会保留对w数值的改变
21         static void SomeFunction2(out int w)
22         {
23             w = 100;
24         }
25 
26         static void Main(string[] args)
27         {
28             #region SomeFunction
29 
30             int[] ints = { 1, 2, 3, 4 };
31             int i = 1;
32 
33             SomeFunction(ints, i);
34 
35             Console.WriteLine(ints[0]);
36             Console.WriteLine(i);
37 
38 
39             //输出结果:100,1
40             //其中i的之是没有变化的
41 
42             #endregion
43 
44             #region SomeFunction1
45 
46             int j = 1;//正确
47             //int j;//错误
48 
49             SomeFunction1(ref j);
50 
51             Console.WriteLine(j);
52 
53             //输出结果:100
54             //j的数值发生改变
55 
56             #endregion
57 
58             #region SomeFunction2
59 
60             int w;//正确
61             //int w = 1;//正确
62             
63             SomeFunction2(out w);
64 
65             Console.WriteLine(w);
66 
67             //输出结果:100
68             //w的数值发生改变
69             
70             #endregion
71         }
72     }
logs_code_collapse">View Code

 

发表评论
用户名: 匿名