重載方法的不同方式是-
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中文網其他相關文章!