| 释义 |
recursion 递归,循环 1.In PL/1,the reactivation of an active procedure. PL/1语言中,一个活动过程的重复调用。 2.The continued repeating of the same operation or group of operations. 连续重复同一操作或同一组操作。 3.Any procedure(A) which, while being executed, either calls itself or calls another procedure (B),which in turn calls procedure(A). 过程(A)执行时,或调用其自身,或调用另一过程(B),而(B)又调用过程(A),这种过程称为递归。 |