c# – Null Coalescence和Lambdas

前端之家收集整理的这篇文章主要介绍了c# – Null Coalescence和Lambdas前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
This answer到我的另一个问题没有编译,虽然从表面上看似乎应该(这不是同一个问题,我可以重写另一个答案为我的另一个问题工作).

特定

private Func<MyT,bool> SegmentFilter { get; set; }

public MyConstructor(Func<MyT,bool> segmentFilter = null)
{
    // This does not compile
    // Type or namespace mas could not be found
    SegmentFilter = segmentFilter ?? (mas) => { return true; };

    // This (equivalent?) form compiles just fine
    if (segmentFilter == null) 
    {
        SegmentFilter = (mas) => { return true; };
    }
    else
    {
        SegmentFilter = segmentFilter;
    }
}

为什么编译器在使用null coalescent运算符时遇到了麻烦,但是没有使用Syntax-sugar-free if / else版本?

解决方法

那是因为 ??优先级高于=>.你可以通过将lambda包装成()来轻松解决这个问题:
SegmentFilter = segmentFilter ?? ((mas) => { return true; });
原文链接:https://www.f2er.com/csharp/92198.html

猜你在找的C#相关文章