Does Scala support tail recursion optimization?
|
1
|
|
|
|
|
|
Scala does tail recursion optimisation at compile-time, as other posters have said. That is, a tail recursive function is transformed into a loop by the compiler (a method invoke is transformed into a jump), as can be seen from the stack trace when running a tail recursive function. Try the following snippet:
and inspect the stack trace. It will show only one call to the function boom - therefore the compiled bytecode is not recursive. There is a proposal floating around to implement tail calls at the JVM level - which in my opinion would a great thing to do, as then the JVM could do runtime optimisations, rather than just compile time optimisations of the code - and could possibly mean more flexible tail recursion. Basically a The current status of it is proto 80%. I don't think it will be done in time for Java 7 ( -- Flaviu Cipcigan |
||
|
|
|
|
Only in very simple cases where the function is self-recursive. Proof of tail recursion ability. It looks like Scala 2.8 might be improving tail-recursion recognition, though. |
||
|
|
|
|
Scala 2.7.x supports tail-call optimization for self-recursion (a function calling itself) of final methods and local functions. Scala 2.8 might come with library support for trampoline too, which is a technique to optimize mutually recursive functions. A good deal of information about the state of Scala recursion can be found in Rich Dougherty's blog. |
||
|
|
