前言
ref和out的作用主要是解决函数内更改函数外变量的值
ref和out关键字
class Progrom
{
//在形参声明前加关键字ref
static void TestRef(ref int v)
{
v = 10;
}
static void TestOut(out int v)
{
v = 10;
}
static void Main()
{
int a = 1;
//调用时也要在实参前加入相对应的关键字
TestRef(ref a);
TestOut(out a);
}
}
ref和out都可以实现在函数内部修改函数外变量的值,那么ref和out有什么区别呢
- ref传入的变量必须初始化
- out传入的变量在函数结束前必须赋值