码迷,mamicode.com
首页 > Windows程序 > 详细

35.C#--方法的重载

时间:2019-04-25 16:00:50      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:自动调用   名称   double   stat   之间   调用   简单   方法   main   

//方法重载,简单说就是函数或者方法有相同的名称,但是参数列表不相同; //这样的同名不同参数的函数或者方法之间,我们称之为重载函数或者方法; //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#--方法的重载

标签:自动调用   名称   double   stat   之间   调用   简单   方法   main   

原文地址:https://blog.51cto.com/12679593/2384571

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!