报告具有无限递归的方法和函数。

示例:


  int factorial(int n) {
    return n * factorial(n - 1);
  }