ref与out

注意点:

  • ref和out都是按地址传递,使用后都将改变原来参数的数值
  • 方法定义和调用方法都必须显式使用 ref/out 关键字

ref:

  • 作为ref参数传递的变量在方法调用中传递之前必须初始化

out:

  • 作为 out 参数传递的变量在方法调用中传递之前不必初始化
  • 被调用的方法需要在返回之前赋一个值
using System.Collections;
using System.Collections.Generic;
using UnityEngine; public class Test : MonoBehaviour {
void Start () {
int a=;//必须初始化
int b=;//必须初始化
handlerRef(ref a,ref b);
Debug.LogFormat("a:{0} b:{1}",a,b);//output: a:4 b:2 int c;//不必初始化
int d;//不必初始化
handlerOut(out c,out d);
Debug.LogFormat("c:{0} d:{1}",c,d);//output: c:5 d:6
} private void handlerRef(ref int a, ref int b){
a=a+b;
b=;
} private void handlerOut(out int c,out int d){
c=;//必须对c赋值
d=c+;//必须对d赋值
}
}
上一篇:基于maven来Spring MVC的环境搭建遇到“坑”


下一篇:Ubuntu 新建swap分区及启用