在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;
}
//三个参数
public static int mulDisplay(int one, int two, int three) {
return one * two * three;
}
//四个参数
public static int mulDisplay(int one, int two, int three, int four) {
return one * two * three * four;
}热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志