首页 > 后端开发 > C#.Net教程 > C# 中重载方法有哪些不同的方式?

C# 中重载方法有哪些不同的方式?

王林
发布: 2023-09-10 15:13:05
转载
682 人浏览过

C# 中重载方法有哪些不同的方式?

重载方法的不同方式是 -

The datatypes of parameters are different
The number of parameters are different
登录后复制

下面给出了一个示例,说明参数的不同数据类型 -

void print(int i) {
   Console.WriteLine("Printing int: {0}", i );
}

void print(double f) {
   Console.WriteLine("Printing float: {0}" , f);
}

void print(string s) {
   Console.WriteLine("Printing string: {0}", s);
}
登录后复制

下面列出了不同数量的参数 -

// two parameters
public static int mulDisplay(int one, int two) {
   return one * two;
}

// three parameters
public static int mulDisplay(int one, int two, int three) {
   return one * two * three;
}

// four parameters
public static int mulDisplay(int one, int two, int three, int four) {
   return one * two * three * four;
}
登录后复制

以上是C# 中重载方法有哪些不同的方式?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板