元组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