C#中的ref和out参数之间有什么区别?
引用参数
引用参数是对变量的存储位置的参考。当您通过引用传递参数时,与值参数不同,不会为这些参数创建新的存储位置。
您可以使用ref关键字声明引用参数。以下是一个例子-
示例
using System;
namespace CalculatorApplication {
class NumberManipulator {
public void swap(ref int x, ref int y) {
int temp;
temp = x; /* save the value of x */
x = y; /* put y into x */
y = temp; /* put temp into y */
}
static void Main(string[] args) {
NumberManipulator n = new NumberManipulator();
/* local variable definition */
int a = 100;
int b = 200;
Console.WriteLine("Before swap, value of a : {0}", a);
Console.WriteLine("Before swap, value of b : {0}", b);
/* calling a function to swap the values */
n.swap(ref a, ref b);
Console.WriteLine("After swap, value of a : {0}", a);
Console.WriteLine("After swap, value of b : {0}", b);
Console.ReadLine();
}
}
}输出结果
Before swap, value of a : 100 Before swap, value of b : 200 After swap, value of a : 200 After swap, value of b : 100
输出参数
return语句只能用于从函数返回一个值。但是,使用out参数,可以从函数返回两个值。
以下是一个例子-
示例
using System;
namespace CalculatorApplication {
class NumberManipulator {
public void getValue(out int x ) {
int temp = 10;
x = temp;
}
static void Main(string[] args) {
NumberManipulator n = new NumberManipulator();
/* local variable definition */
int a = 150;
Console.WriteLine("Before method call, value of a : {0}", a);
/* calling a function to get the value */
n.getValue(out a);
Console.WriteLine("After method call, value of a : {0}", a);
Console.ReadLine();
}
}
}输出结果
Before method call, value of a : 150 After method call, value of a : 10
热门推荐
10 恭喜订婚的祝福语简短
11 新娘对伴娘祝福语简短
12 新年祝福语简短句子
13 生日祝福语简短激励女生
14 新年送老师简短祝福语
15 中秋祝福语简短版大全
16 祝女儿出嫁简短祝福语
17 生日祝福语舅舅 简短独特
18 古风祝福语唯美简短亲情