元組C# 中的類


Tuple<T1,T2,T3,T4> 類表示一個 4 元組,稱為四元組。元組是一種具有元素序列的資料結構。

它用於 −

  • 更容易訪問資料集。
  • 更容易操作資料集。
  • 表示一個單獨的資料集。
  • 從方法返回多個值
  • 將多個值傳遞給方法

它有四個屬性 −

  • Item1 − 獲取當前 Tuple<T1,T2,T3,T4> 物件第一個分量的值。

  • Item2 − 獲取當前 Tuple<T1,T2,T3,T4> 物件第二個分量的值。

  • Item3 − 獲取當前 Tuple<T1,T2,T3,T4> 物件第三個分量的值。

  • Item4 − 獲取當前 Tuple<T1,T2,T3,T4> 物件第四個分量的值。

示例

我們現在來看一個在 C# 中實現 4 元組的示例 −

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<string,string,string,string> tuple = new Tuple<string,string,string,string>("nathan", "steve", "katie", "tim");
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      if (tuple.Item1 == "nathan") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item1);
      }
      if (tuple.Item2 == "jack") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item2);
      }
      if (tuple.Item3 == "katie") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item3);
      }
      if (tuple.Item4 == "tom") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item4);
      }
   }
}

輸出

這會產生以下輸出 −

Value (Item1)= nathan
Value (Item2)= steve
Value (Item3)= katie Value
Value (Item4)= tom
Exists: Tuple Value = nathan
Exists: Tuple Value = katie

示例

現在讓我們看另一個實現 C# 中 4 元組的示例 −

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<int,int,int,int> tuple = new Tuple<int,int,int,int>(100, 150, 300, 450);
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      if (tuple.Item1 == 100) {
         Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1);
      }
      if (tuple.Item2 == 250) {
         Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2);
      }
      if (tuple.Item3 == 270) {
         Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3);
      }
      if (tuple.Item4 == 300) {
         Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4);
      }
   }
}

輸出

這會產生以下輸出 −

Value (Item1)= 100
Value (Item2)= 150
Value (Item3)= 300
Value (Item4)= 450
Exists: Tuple Item 1 = 100

更新於: 2019 年 11 月 06 日

87 次瀏覽

開始您的 職業

透過完成課程獲得認證

開始
廣告
© . All rights reserved.