我们如何在C#方法中通过引用传递参数?
引用参数是对变量的存储位置的参考。当您通过引用传递参数时,与值参数不同,不会为这些参数创建新的存储位置。
引用参数表示与提供给该方法的实际参数相同的存储位置。
以下是显示如何通过引用传递参数的示例。使用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
热门推荐
10 日常祝福语简短语客户
11 贺卡文字同事祝福语简短
12 保持快乐祝福语大全简短
13 60岁长辈祝福语简短
14 对睡觉的祝福语简短
15 姨父生日祝福语简短精辟
16 简短祝福语中考女孩的话
17 老公生日祝福语简短好看
18 恭喜新郎父母简短祝福语