开发者

Recursion with Func

开发者 https://www.devze.com 2023-02-03 06:35 出处:网络
Is it possible to do recursion with an Func delegate? I have the following, which doesn开发者_如何学编程\'t compile because the name of the Func isn\'t in scope...

Is it possible to do recursion with an Func delegate? I have the following, which doesn开发者_如何学编程't compile because the name of the Func isn't in scope...

Func<long, long, List<long>, IEnumerable<long>> GeneratePrimesRecursively = (number, upperBound, primeFactors) => 
{
    if (upperBound < number)
    {
        return primeFactors;
    }
    else
    {
        if (!primeFactors.Any(factor => number % factor == 0)) primeFactors.Add(number);
        return GeneratePrimesRecursively(++number, upperBound, primeFactors); // breaks here.
    }
};


Like this:

Func<...> method = null;
method = (...) => {
    return method();
};

Your code produces an error because you're trying to use the variable before you assign it.
Your lambda expression is compiled before the variable is set (the variable can only be set to a complete expression), so it cannot use the variable.
Setting the variable to null first avoids this issue, because it will already be set when the lambda expression is compiled.

As a more powerful approach, you can use a YCombinator.

0

精彩评论

暂无评论...
验证码 换一张
取 消