C#基础之ref与out关键字

ref

  ref 关键字使得参数按引用传递,通俗点讲就是传递参数的地址,因此在方法中对参数所做的任何更改都反映在该变量中。值得注意的是传递到 ref 参数的参数必须先进行初始化。

class RefExample
{
static void Method(ref int i)
{
i = 44;
}
static void Main()
{
int val = 0;
Method(ref val);
// val is now 44
}
}

  按引用传递值类型(如上所示)是有用的,但是 ref 对于传递引用类型也是很有用的。这允许被调用的方法修改该引用所引用的对象,因为引用本身是按引用来传递的。下面的示例显示出当引用类型作为 ref 参数传递时,可以更改对象本身。

class RefRefExample
{
static void Method(ref string s)
{
s = "changed";
}
static void Main()
{
string str = "original";
Method(ref str);
// str is now "changed"
}
}

out

  out 关键字也使得参数按引用传递,在这一点上与 ref 关键字是一致的,不同之处在于 ref 要求变量必须在传递之前进行初始化,out 则无此强制要求尽管作为 out 参数传递的变量不需要在传递之前进行初始化,但在调用方法时,必须在方法返回之前赋值,确切的说,在该方法中使用 out 参数之前必须为其赋值

class OutExample
{
static void Method(out int i)
{
i = 44;
}
static void Main()
{
int value;
Method(out value);
// value is now 44
}
}

  当希望方法返回多个值时,声明 out 方法很有用。使用 out 参数的方法仍然可以将变量用作返回类型,但它还可以将一个或多个对象作为 out 参数返回给调用方法。此示例使用 out 在一个方法调用中返回三个变量。请注意,第三个参数所赋的值为 Null。这样便允许方法有选择地返回值。

class OutReturnExample
{
static void Method(out int i, out string s1, out string s2)
{
i = 44;
s1 = "I've been returned";
s2 = null;
}
static void Main()
{
int value;
string str1, str2;
Method(out value, out str1, out str2);
// value is now 44
// str1 is now "I've been returned"
// str2 is (still) null;
}
}

含ref与out参数的方法的重载

  ref 和 out 关键字在运行时的处理方式不同,但在编译时的处理方式相同。因此,如果一个方法采用 ref 参数,而另一个方法采用 out 参数,则无法重载这两个方法。但是,如果一个方法采用 ref 或 out 参数,而另一个方法不采用这两类参数,则可以进行重载。

注:本文内容大多来自MSDN,纯为学习摘录!

原文地址:https://www.cnblogs.com/hans_gis/p/2206981.html