out ref

(1) out   参数在一个方法中返回多个不同类型的值

              out参数要求在方法内部为其赋值(因为需要返回)

              

static void Main(string[] args)
{
int num;
bool b = MyTryParse("123", out num);
Console.WriteLine(num);
Console.WriteLine(b);
Console.ReadKey();
}
public static bool MyTryParse(string s,out int result)
{
result = 0;
try
{
result = Convert.ToInt32(s);
return true;
}
catch
{
return false;
}
}

 

(2)  ref   能够将一个变量带入一个方法中进行改变,改变完成后,再将改变后的值带出方法

               ref参数要求在方法外必须为其赋值,而方法内可以不赋值。

static void Main(string[] args)
{
double salary = 5000;
JiangJin(ref salary);
Console.WriteLine(salary);
Console.ReadKey();
}
public static void JiangJin(ref double s)
{
s += 500;
}
public static void FaKuan(double s)
{
s -= 500;
}

 

out ref

上一篇:技术新品之一款可以检测噪声的数字传感器


下一篇:【玩转 WordPress】Serverless 搭建 WordPress = 2 分钟