using System;
public partial class testref : System.Web.UI.Page
{
static void outTest(out int x, out int y)
{//离开这个函数前,必须对x和y赋值,否则会报错。
//y = x;
//上面这行会报错,因为使用了out后,x和y都清空了,需要重新赋值,即使调用函数前赋过值也不行
x = ;
y = ;
}
static void refTest(ref int x, ref int y)
{
x =x+ ;
y = y+;
} protected void Page_Load(object sender, EventArgs e)
{
//out test
int a, b;
//out使用前,变量可以不赋值
outTest(out a, out b);
Response.Write("a={0};b={1}"+a+b);
int c = , d = ;
outTest(out c, out d);
Response.Write("c={0};d={1}"+c+d); //ref test
int m, n;
//refTest(ref m, ref n);
//上面这行会出错,ref使用前,变量必须赋值 int o = , p = ;
refTest(ref o, ref p);
Response.Write("o={11};p={22}" + o + p); }
}
1.ref 有进有出,使用前需实例化
2.out只出不进(即便已经实例化参数,调用函数时,依旧为null),