C# 四种委托 Delegate Action Func Predicate 的学习

首先是Delegate,个人拙见:它可以委托所有类型的事件,但是它必须声明在类外才能被使用,如果在类内,别的类就无法访问了。

 

其次是Action,它只能委托返回void的类型,参数为空或者只有一个参数。

void Method()

void Method(T _t)

 

Func,它只能委托有1个返回值的方法,参数无限制。

T method(in XX,out XX)等

 

Predicate委托是为了筛选列表中数据。boolean void method(T _t)

 

具体应用参照链接:http://www.cnblogs.com/Wendy_Yu/archive/2011/06/08/2075526.html

你可能感兴趣的:(C# 四种委托 Delegate Action Func Predicate 的学习)