标签:
C#里准确的说法应该叫委托,委托的方法有多种,下面介绍Action<T>,可以做为一个函数参数递。
//引用
using System;
void Start () {
TestMain (test);
}
void TestMain(Action<int> tt){
Debug.Log("testMain");
//如果工作完成
tt (0);
}
void test(int x){
Debug.Log("test");
}
封装的方法必须与此委托定义的方法签名相对应。 也就是说,封装的方法必须具有一个通过值传递给它的参数,并且不能返回值。 也就是说Action<T>必须与test(T)对应,至少有一个参数,test必须为void。
标签:
原文地址:http://www.cnblogs.com/sevenmoons/p/4178369.html