gpt4 book ai didi

c# - && 足以进行尾递归吗?

转载 作者:太空宇宙 更新时间:2023-11-03 17:56:56 26 4
gpt4 key购买 nike

.net 编译器是否知道从以下代码生成尾递归?(意味着它知道不应该进行回溯,因为 & ?)

public bool DeleteLocation(Guid locationId)
{

return ((_mLocationDal.Save(locationRes) != null) &&
locationRes.ChildrenIds.Aggregate(true,
(succeededSoFar, next) => succeededSoFar &&
DeleteLocation(next)));
}

最佳答案

关于c# - && 足以进行尾递归吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8544213/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com