首頁  >  文章  >  後端開發  >  為什麼我們在 C# 中使用 params 關鍵字?

為什麼我們在 C# 中使用 params 關鍵字?

WBOY
WBOY轉載
2023-09-21 17:53:041109瀏覽

为什么我们在 C# 中使用 params 关键字?

在宣告一個方法時,如果你不確定作為參數傳遞的參數數量,那麼可以使用C#的param陣列。

以下是一個完整的範例,用於學習如何在C#中實作param:

範例

using System;

namespace Program {
   class ParamArray {
      public int AddElements(params int[] arr) {
         int sum = 0;
       
         foreach (int i in arr) {
            sum += i;
         }
         return sum;
      }
   }

   class Demo {
      static void Main(string[] args) {
         ParamArray app = new ParamArray();
         int sum = app.AddElements(300, 250, 350, 600, 120);
         Console.WriteLine("The sum is: {0}", sum);
         Console.ReadKey();
      }
   }
}

以上是為什麼我們在 C# 中使用 params 關鍵字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除