| 1. | Tail recursion and transformations 尾递归及其转换 |
| 2. | Is strictly tail recursive 是严格尾递归的。 |
| 3. | 01 may 2001 many algorithms are expressed most concisely as tail - recursive methods 很多算法用尾递归方法表示会显得格外简明。 |
| 4. | For a good discussion of tail recursion and its conversion to iteration , check out the 欲详细了解尾递归及其到迭代的转换,请参阅 |
| 5. | Can your jit transform tail recursion on code while preserving language semantics 清单4 .您的jit会在保持语言语义的同时转换尾递归代码吗? |
| 6. | Tail - recursive transformations can speed up your apps , but not all jvms can perform the task 尾递归转换能加快应用程序的速度,但不是所有的jvm都会做这种转换 |
| 7. | Remember : we can t rely on our code to always be running on a jvm that will transform tail - recursive calls 记住:我们不能寄希望于我们的代码会总是运行在会转换尾递归调用的jvm上。 |
| 8. | If your jit compiler converts tail - recursive calls to iteration , this program will continue to run indefinitely 如果您的jit编译器把尾递归调用转换成迭代,这个程序将无限期地运行下去。 |
| 9. | Instead , the transformation from tail - recursive function to simple loop must be done dynamically by a jit compiler 相反地,这种从尾递归函数到简单循环的转换必须由jit编译器动态地进行。 |
| 10. | One way to check whether your jit transforms your tail - recursive methods is to compile and run the following small test class 要判断您的jit会否转换尾递归的一个办法是编译并运行如下小测试类: |