“和”和尾递归
我可以在 and
语句中使用递归调用来构建迭代过程吗?
例如,出于目的,我们有一个不执行任何操作的函数 foo
。它将创建什么样的过程(迭代或递归)?
(define (foo? bar)
(if (< bar 0) true (and (> 10 1) (foo? (- bar 1)))))
Can I build iterative process using recursive call in and
statement?
For example, purpose, we have function foo
that doesn't do anything. What kind of process it will create (iterative or recursion)?
(define (foo? bar)
(if (< bar 0) true (and (> 10 1) (foo? (- bar 1)))))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,
和
没问题 - 您可以在 标准。Yes,
and
is OK - you can read this in the standard.为了兰伯特的缘故,让我们扩展一下语法。
For Lamberts sake, lets expand the syntax.