C#学习笔记2
1、C#中ref和out的使用
ref是传递参数的地址,out是返回值,两者有一定的相同之处,不过也有不同点。
使用ref前必须对变量赋值,out不用。
out的函数会清空变量,即使变量已经赋值也不行,退出函数时所有out引用的变量都要赋值,ref引用的可以修改,也可以不修改。
区别可以参看下面的代码:
View Code
1 class TestApp
2 {
3 static void outTest(out int x, out int y)
4 {//离开这个函数前,必须对x和y赋值,否则会报错。
5 //y = x;
6 //上面这行会报错,因为使用了out后,x和y都清空了,需要重新赋值,即使调用函数前赋过值也不行
7 x = 1;
8 y = 2;
9 }
10 static void refTest(ref int x, ref int y)
11 {
12 x = 1;
13 y = x;
14 }
15 public static void Main()
16 {
17 //out test
18 int a,b;
19 //out使用前,变量可以不赋值
20 outTest(out a, out b);
21 Console.WriteLine("a={0};b={1}",a,b);
22 int c=11,d=22;
23 outTest(out c, out d);
24 Console.WriteLine("c={0};d={1}",c,d);
25
26 //ref test
27 int m,n;
28 //refTest(ref m, ref n);
29 //上面这行会出错,ref使用前,变量必须赋值
30
31 int o=11,p=22;
32 refTest(ref o, ref p);
33 Console.WriteLine("o={0};p={1}",o,p);
34 Console.ReadLine();
35 }
36 }
http://www.cnblogs.com/suizhikuo/archive/2011/06/17/2083294.html
2、C#字符串操作
http://www.cnblogs.com/luohuarenduli/archive/2008/03/10/1099450.html
3、C#中int转成string,string转成int
http://www.cnblogs.com/xshy3412/archive/2007/08/29/874362.html