Java支持尾递归吗?
可能的重复:
为什么 JVM 仍然不支持尾部调用优化?
我在网上看到了很多不同的答案,所以我想我应该问一下专家。
Possible Duplicate:
Why does the JVM still not support tail-call optimization?
I see so many different answers online, so I thought I'd ask the experts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尾递归和尾递归优化之间存在差异。 java支持尾递归,因为它没有什么特别的,不支持尾递归优化。
There is difference between tail recursion and tail recursion optimization. Tail recursion is supported by java because there is nothing special in it, tail recursion optimization is not supported.