ref 参数

时间:2023-03-09 00:46:49
ref  参数

当使用ref 作为参数赋值时,ref 得需要初始化,就是在从新定义一下 参数的值,下面有列子:

在控制台中运行如下:

//定义一个方法,两个参数 i和a 。

public static void getvalue(ref int i, ref int a)
        {
            i = 200;
            a = 300;

}

在下面调用这个方法:

static void Main(string[] args)
        {
            //ref  和 out,
            int i = 99; //ref 参数需要初始化
            int a = 88;//ref 参数需要初始化
            getvalue(ref i,ref a);
            Console.WriteLine("{0},{1}",i,a);
            Console.Read();
        }

输出的值是:

200  和300     ,     由此证明使用ref时输出的值是不变。