C#中的元组 <T1,T2,T3,T4,T5,T6,T7>类

Tuple <T1,T2,T3,T4,T5,T6,T7>类表示一个7元组,称为septet。元组是具有一系列元素的数据结构。

它用于-

  • 轻松访问数据集。

  • 更容易处理数据集。

  • 代表一组数据。

  • 从方法返回多个值

  • 将多个值传递给方法

它具有七个属性-

  • Item1-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第一个组件的值。

  • Item2-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第二个组件的值。

  • Item3-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第三部分的值。

  • Item4-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第四部分的值。

  • Item5-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第五个组件的值。

  • Item6-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第六个组件的值。

  • Item7-获取当前元组<T1,T2,T3,T4,T5,T6,T7>对象的第七个组件的值。

现在让我们看一个在C#中实现7元组的示例-

示例

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<int,int,int,int,int,int,int> tuple = new Tuple<int,int,int,int,int,int,int>(100, 150, 200, 300, 600, 1000, 2000);
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      Console.WriteLine("Value (Item5)= " + tuple.Item5);
      Console.WriteLine("Value (Item6)= " + tuple.Item6);
      Console.WriteLine("Value (Item7)= " + tuple.Item7);
      if (tuple.Item5 == 600) {
         Console.WriteLine("Exists: Tuple Item 5 = " +tuple.Item5);
      }
      if (tuple.Item6 == 900) {
         Console.WriteLine("Exists: Tuple Item 6 = " +tuple.Item6);
      }
      if (tuple.Item7 == 2000) {
         Console.WriteLine("Exists: Tuple Item 7 = " +tuple.Item7);
      }
   }
}

输出结果

这将产生以下输出-

Value (Item1)= 100
Value (Item2)= 150
Value (Item3)= 200
Value (Item4)= 300
Value (Item5)= 600
Value (Item6)= 1000
Value (Item7)= 2000
Exists: Tuple Item 5 = 600
Exists: Tuple Item 7 = 2000

现在让我们来看另一个示例,以在C#中实现7元组-

示例

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<int,int,int,int,int,int,int> tuple = new Tuple<int,int,int,int,int,int,int>(100, 150, 200, 300, 600, 1000, 1000);
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      Console.WriteLine("Value (Item5)= " + tuple.Item5);
      Console.WriteLine("Value (Item6)= " + tuple.Item6);
      Console.WriteLine("Value (Item7)= " + tuple.Item7);
      if (tuple.Item5 == 600) {
         Console.WriteLine("Exists: Tuple Item 5 = " +tuple.Item5);
      }
      if (tuple.Item6 == 900) {
         Console.WriteLine("Exists: Tuple Item 6 = " +tuple.Item6);
      }
      if (tuple.Item7 == 2000) {
         Console.WriteLine("Exists: Tuple Item 7 = " +tuple.Item7);
      }
      if (tuple.Item7 == tuple.Item6){
         Console.WriteLine("元组项目已匹配!");
      }
   }
}

输出结果

这将产生以下输出-

Value (Item1)= 100
Value (Item2)= 150
Value (Item3)= 200
Value (Item4)= 300
Value (Item5)= 600
Value (Item6)= 1000
Value (Item7)= 1000
Exists: Tuple Item 5 = 600
元组项目已匹配!