具有相同名称但参数不同的两个或多个方法,我们称之为 C# 中的方法重载。C# 中的方法重载可以通过更改参数的数量和参数的数据类型来实现。假设您有一个打印数字乘积的函数,那么我们的重载方法将具有相同的名称,但参数数量不同:public static int mulDisplay(int one, int two) { } public static int mulDisplay(int one, int two, int three) { } public static int mulDisplay(int one, int two, int three, int four) { } 下面是一个… 阅读更多
要使用递归计算数字的幂,请尝试以下代码。在这里,如果幂不等于 0,则函数调用发生,最终是递归:if (p!=0) { return (n * power(n, p - 1)); } 上面,n 是数字本身,幂在每次迭代中都会减少,如下所示:示例使用 System; using System.IO; 公共类 Demo { public static void Main(string[] args) { int n = 5; int p = 2; long res; res = power(n, p); Console.WriteLine(res); } static long power (int n, int p) { if (p!=0) { return (n * power(n, p - 1)); } return 1; } }输出25