元組C# 中的類
Tuple<T1,T2,T3,T4,T5,T6,T7> 類表示一個 7 元組,又稱七元組。元組是一種具有元素序列的資料結構。
它用於 −
- 更輕鬆地訪問資料集。
- 更輕鬆地操作資料集。
- 表示一組資料。
- 從方法返回多個值
- 向方法傳遞多個值
它有七個屬性 −
Item1−獲取當前 Tuple<T1,T2,T3,T4,T5,T6,T7> 物件的第一個分量的值。
Item2−獲取當前 Tuple<T1,T2,T3,T4,T5,T6,T7> 物件的第二個分量的值。
Item3−獲取當前 Tuple<T1, T2, T3, T4, T5, T6, T7> 物件的第三個分量的值。
Item4−獲取當前 Tuple<T1,T2,T3,T4,T5,T6,T7>物件的第四個分量的值。
Item5−獲取當前 Tuple<T1,T2,T3,T4,T5,T6,T7> 物件的第五個分量的值。
Item6−獲取當前 Tuple<T1,T2,T3,T4,T5,T6,T7> 物件的第六個分量的值。
Item7−獲取當前 Tuple<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("Tuple Items Matched!");
}
}
}輸出
這將生成以下輸出 –
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 Tuple Items Matched!
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP