如何递归调用 C# 方法?
要递归调用 C# 方法,可以尝试运行以下代码。此处,我们将使用 display() 递归函数查找一个数字的阶乘。
如果值为 1,则返回 1,因为阶乘是 1。
if (n == 1) return 1;
如果不是,则如果要获得 5! 的值,将为以下迭代调用递归函数
Interation1: 5 * display(5 - 1); Interation2: 4 * display(4 - 1); Interation3: 3 * display(3 - 1); Interation4: 4 * display(2 - 1);
以下是递归调用 C# 方法的完整代码。
示例
using System; namespace MyApplication { class Factorial { public int display(int n) { if (n == 1) return 1; else return n * display(n - 1); } static void Main(string[] args) { int value = 5; int ret; Factorial fact = new Factorial(); ret = fact.display(value); Console.WriteLine("Value is : {0}", ret ); Console.ReadLine(); } } }
输出
Value is : 120
广告