35.C#--方法的重载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了35.C#--方法的重载相关的知识,希望对你有一定的参考价值。

//方法重载,简单说就是函数或者方法有相同的名称,但是参数列表不相同; //这样的同名不同参数的函数或者方法之间,我们称之为重载函数或者方法; //main函数中调用的时候,虽然方法名字相同,但根据参数表可以自动调用对应的 函数。 public static void M(int n1, int n2) { int result = n1 + n2; } //public static int M(int a1, int a2) //{ // return a1 + a2; //} public static double M(double d1, double d2) { return d1 + d2; } public static void M(int n1, int n2, int n3) { int result = n1 + n2 + n3; } public static string M(string s1, string s2) { return s1 + s2; }

以上是关于35.C#--方法的重载的主要内容,如果未能解决你的问题,请参考以下文章

关于Java中的方法重载

如何重载单个变量的TOSTRING方法 C#中

JAVA方法重载

Java方法重载

方法的重写重载。

Java 中方法的重载