Func委托和Action委托

http://stackoverflow.com/questions/4317479/func-vs-action-vs-predicate

The difference between Func and Action is simply whether you want the delegate to return a value (use Func) or not (use Action).

Func is probably most commonly used in LINQ - for example in projections:

 list.Select(x => x.SomeProperty)

or filtering:

 list.Where(x => x.SomeValue == someOtherValue)

or key selection:

 list.Join(otherList, x => x.FirstKey, y => y.SecondKey, ...)

Action is more commonly used for things like List<T>.ForEach: execute the given action for each item in the list. I use this less often than Func, although I do sometimes use the parameterless version for things like Control.BeginInvoke and Dispatcher.BeginInvoke.

Predicate is just a special cased Func<T, bool> really, introduced before all of the Func and most of the Action delegates came along. I suspect that if we'd already had Func and Action in their various guises, Predicate wouldn't have been introduced... although it does impart a certain meaning to the use of the delegate, whereas Func and Action are used for widely disparate purposes.

Predicate is mostly used in List<T> for methods like FindAll and RemoveAll.

 

Func用于有返回值的方法,Action用于没有返回值的方法

 

Func<string>    表示一个有返回值的函数,返回值为string,但是函数没有参数

Func<stirng,string>  表示一个有返回值的函数,返回值为string,函数参数为string

Action<string>  表示一个无返回值的函数,函数参数为string

 

复制代码
    Action b = Method;
    private static void Method()
    {
    }

    Action<string> a = Method;
    private static void Method(string str)
    {
    }
复制代码

 

 

复制代码
    Func<string> a = Method;
    private static string Method()
    {
        return string.Empty;
    }


    Func<string, string> b = Method;
    private static string Method(string str)
    {
        return string.Empty;
    }
复制代码

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(217)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2016-03-09 override (C# Reference)
2016-03-09 virtual (C# Reference)
点击右上角即可分享
微信分享提示