首頁 > 後端開發 > C#.Net教程 > C# 中重載方法有哪些不同的方式?

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

王林
發布: 2023-09-10 15:13:05
轉載
660 人瀏覽過

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板