遞迴(Recursive) 是程式中包含自我呼叫(self-calling)。 function Recursive(int x){ ... int z = Recursive(y) + 1; //compiler會從這裡開始執行.
確定! 回上一頁