Tuple<T1,T2> Класс
Определение
Представляет кортеж из двух компонентов.Represents a 2-tuple, or pair.
generic <typename T1, typename T2>
public ref class Tuple : IComparable, System::Collections::IStructuralComparable, System::Collections::IStructuralEquatable
generic <typename T1, typename T2>
public ref class Tuple : IComparable, System::Collections::IStructuralComparable, System::Collections::IStructuralEquatable, System::Runtime::CompilerServices::ITuple
public class Tuple<T1,T2> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable
public class Tuple<T1,T2> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.Runtime.CompilerServices.ITuple
[System.Serializable]
public class Tuple<T1,T2> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable
type Tuple<'T1, 'T2> = class
interface IStructuralComparable
interface IStructuralEquatable
interface IComparable
type Tuple<'T1, 'T2> = class
interface IStructuralComparable
interface IStructuralEquatable
interface IComparable
interface ITuple
[<System.Serializable>]
type Tuple<'T1, 'T2> = class
interface IStructuralEquatable
interface IStructuralComparable
interface IComparable
[<System.Serializable>]
type Tuple<'T1, 'T2> = class
interface IStructuralEquatable
interface IStructuralComparable
interface IComparable
interface ITuple
Public Class Tuple(Of T1, T2)
Implements IComparable, IStructuralComparable, IStructuralEquatable
Public Class Tuple(Of T1, T2)
Implements IComparable, IStructuralComparable, IStructuralEquatable, ITuple
Параметры типа
- T1
Тип первого компонента кортежа.The type of the tuple's first component.
- T2
Тип второго компонента кортежа.The type of the tuple's second component.
- Наследование
-
Tuple<T1,T2>
- Атрибуты
- Реализации
Комментарии
Кортеж — это структура данных, которая имеет определенное число и последовательность значений.A tuple is a data structure that has a specific number and sequence of values. Tuple<T1,T2>Класс представляет кортеж из двух компонентов (или пару), который является компонентом с двумя компонентами.The Tuple<T1,T2> class represents a 2-tuple, or pair, which is a tuple that has two components. Кортеж из двух элементов подобен KeyValuePair<TKey,TValue> структуре.A 2-tuple is similar to a KeyValuePair<TKey,TValue> structure.
Можно создать экземпляр Tuple<T1,T2> объекта, вызвав либо конструктор, Tuple<T1,T2> либо статический Tuple.Create<T1,T2>(T1, T2) метод.You can instantiate a Tuple<T1,T2> object by calling either the Tuple<T1,T2> constructor or the static Tuple.Create<T1,T2>(T1, T2) method. Значения компонентов кортежа можно получить, используя свойства только для чтения Item1 и Item2 экземпляра.You can retrieve the values of the tuple's components by using the read-only Item1 and Item2 instance properties.
Кортежи обычно используются четырьмя разными способами:Tuples are commonly used in four different ways:
Для представления одного набора данных.To represent a single set of data. Например, кортеж может представлять запись в базе данных, а ее компоненты могут представлять поля этой записи.For example, a tuple can represent a record in a database, and its components can represent that record's fields.
Для обеспечения простого доступа к набору данных и его манипуляции.To provide easy access to, and manipulation of, a data set. В следующем примере определяется массив Tuple<T1,T2> объектов, содержащих имена учащихся и их соответствующие результаты тестирования.The following example defines an array of Tuple<T1,T2> objects that contain the names of students and their corresponding test scores. Затем он перебирает массив, чтобы вычислить среднюю оценку теста.It then iterates the array to calculate the mean test score.
using System; public class Example { public static void Main() { Tuple<string, Nullable<int>>[] scores = { new Tuple<string, Nullable<int>>("Jack", 78), new Tuple<string, Nullable<int>>("Abbey", 92), new Tuple<string, Nullable<int>>("Dave", 88), new Tuple<string, Nullable<int>>("Sam", 91), new Tuple<string, Nullable<int>>("Ed", null), new Tuple<string, Nullable<int>>("Penelope", 82), new Tuple<string, Nullable<int>>("Linda", 99), new Tuple<string, Nullable<int>>("Judith", 84) }; int number; double mean = ComputeMean(scores, out number); Console.WriteLine("Average test score: {0:N2} (n={1})", mean, number); } private static double ComputeMean(Tuple<string, Nullable<int>>[] scores, out int n) { n = 0; int sum = 0; foreach (var score in scores) { if (score.Item2.HasValue) { n += 1; sum += score.Item2.Value; } } if (n > 0) return sum / (double) n; else return 0; } } // The example displays the following output: // Average test score: 87.71 (n=7)
Module Example Public Sub Main() Dim scores() As Tuple(Of String, Nullable(Of Integer)) = { New Tuple(Of String, Nullable(Of Integer))("Jack", 78), New Tuple(Of String, Nullable(Of Integer))("Abbey", 92), New Tuple(Of String, Nullable(Of Integer))("Dave", 88), New Tuple(Of String, Nullable(Of Integer))("Sam", 91), New Tuple(Of String, Nullable(Of Integer))("Ed", Nothing), New Tuple(Of String, Nullable(Of Integer))("Penelope", 82), New Tuple(Of String, Nullable(Of Integer))("Linda", 99), New Tuple(Of String, Nullable(Of Integer))("Judith", 84) } Dim number As Integer Dim mean As Double = ComputeMean(scores, number) Console.WriteLine("Average test score: {0:N2} (n={1})", mean, number) End Sub Private Function ComputeMean(scores() As Tuple(Of String, Nullable(Of Integer)), ByRef n As Integer) As Double n = 0 Dim sum As Integer For Each score In scores If score.Item2.HasValue Then n += 1 sum += score.Item2.Value End If Next If n > 0 Then Return sum / n Else Return 0 End If End Function End Module ' The example displays the following output: ' Average test score: 87.71 (n=7)
Для получения нескольких значений из метода без использования
out
параметров (в C#) илиByRef
параметров (в Visual Basic).To return multiple values from a method without the use ofout
parameters (in C#) orByRef
parameters (in Visual Basic). Например, в следующем примере Tuple<T1,T2> объект используется для возврата частного результата и остатка от деления целых чисел.For example, the following example uses a Tuple<T1,T2> object to return the quotient and the remainder that result from integer division.using System; public class Class1 { public static void Main() { int dividend, divisor; Tuple<int, int> result; dividend = 136945; divisor = 178; result = IntegerDivide(dividend, divisor); if (result != null) Console.WriteLine(@"{0} \ {1} = {2}, remainder {3}", dividend, divisor, result.Item1, result.Item2); else Console.WriteLine(@"{0} \ {1} = <Error>", dividend, divisor); dividend = Int32.MaxValue; divisor = -2073; result = IntegerDivide(dividend, divisor); if (result != null) Console.WriteLine(@"{0} \ {1} = {2}, remainder {3}", dividend, divisor, result.Item1, result.Item2); else Console.WriteLine(@"{0} \ {1} = <Error>", dividend, divisor); } private static Tuple<int, int> IntegerDivide(int dividend, int divisor) { try { int remainder; int quotient = Math.DivRem(dividend, divisor, out remainder); return new Tuple<int, int>(quotient, remainder); } catch (DivideByZeroException) { return null; } } } // The example displays the following output: // 136945 \ 178 = 769, remainder 63 // 2147483647 \ -2073 = -1035930, remainder 757
Module modMain Public Sub Main() Dim dividend, divisor As Integer Dim result As Tuple(Of Integer, Integer) dividend = 136945 : divisor = 178 result = IntegerDivide(dividend, divisor) If result IsNot Nothing Then Console.WriteLine("{0} \ {1} = {2}, remainder {3}", dividend, divisor, result.Item1, result.Item2) Else Console.WriteLine("{0} \ {1} = <Error>", dividend, divisor) End If dividend = Int32.MaxValue : divisor = -2073 result = IntegerDivide(dividend, divisor) If result IsNot Nothing Then Console.WriteLine("{0} \ {1} = {2}, remainder {3}", dividend, divisor, result.Item1, result.Item2) Else Console.WriteLine("{0} \ {1} = <Error>", dividend, divisor) End If End Sub Private Function IntegerDivide(dividend As Integer, divisor As Integer) As Tuple(Of Integer, Integer) Try Dim remainder As Integer Dim quotient As Integer = Math.DivRem(dividend, divisor, remainder) Return New Tuple(Of Integer, Integer)(quotient, remainder) Catch e As DivideByZeroException Return Nothing End Try End Function End Module ' The example displays the following output: ' 136945 \ 178 = 769, remainder 63 ' 2147483647 \ -2073 = -1035930, remainder 757
Передача нескольких значений в метод через один параметр.To pass multiple values to a method through a single parameter. Например, Thread.Start(Object) метод имеет один параметр, который позволяет указать одно значение для метода, который поток выполняет при запуске.For example, the Thread.Start(Object) method has a single parameter that lets you supply one value to the method that the thread executes at startup. При указании Tuple<T1,T2> объекта в качестве аргумента метода можно указать подпрограммы запуска потока с двумя элементами данных.If you supply a Tuple<T1,T2> object as the method argument, you can supply the thread's startup routine with two items of data.
Конструкторы
Tuple<T1,T2>(T1, T2) |
Инициализирует новый экземпляр класса Tuple<T1,T2>.Initializes a new instance of the Tuple<T1,T2> class. |
Свойства
Item1 |
Получает значение первого компонента текущего объекта Tuple<T1,T2>.Gets the value of the current Tuple<T1,T2> object's first component. |
Item2 |
Получает значение второго компонента текущего объекта Tuple<T1,T2>.Gets the value of the current Tuple<T1,T2> object's second component. |
Методы
Equals(Object) |
Возвращает значение, показывающее, равен ли текущий объект Tuple<T1,T2> указанному объекту.Returns a value that indicates whether the current Tuple<T1,T2> object is equal to a specified object. |
GetHashCode() |
Возвращает хэш-код для текущего объекта Tuple<T1,T2>.Returns the hash code for the current Tuple<T1,T2> object. |
GetType() |
Возвращает объект Type для текущего экземпляра.Gets the Type of the current instance. (Унаследовано от Object) |
MemberwiseClone() |
Создает неполную копию текущего объекта Object.Creates a shallow copy of the current Object. (Унаследовано от Object) |
ToString() |
Возвращает строковое представление значения этого экземпляра Tuple<T1,T2>.Returns a string that represents the value of this Tuple<T1,T2> instance. |
Явные реализации интерфейса
IComparable.CompareTo(Object) |
Сравнивает текущий объект Tuple<T1,T2> с заданным объектом и возвращает целое число, указывающее, находится ли текущий объект в той же позиции, что и указанный объект, после него или перед ним в порядке сортировки.Compares the current Tuple<T1,T2> object to a specified object and returns an integer that indicates whether the current object is before, after, or in the same position as the specified object in the sort order. |
IStructuralComparable.CompareTo(Object, IComparer) |
Сравнивает текущий объект Tuple<T1,T2> с указанным объектом, используя заданный компаратор, и возвращает целое число, которое показывает положение текущего объекта относительно указанного объекта в порядке сортировки: перед объектом, после него или в той же позиции.Compares the current Tuple<T1,T2> object to a specified object by using a specified comparer, and returns an integer that indicates whether the current object is before, after, or in the same position as the specified object in the sort order. |
IStructuralEquatable.Equals(Object, IEqualityComparer) |
Возвращает значение, показывающее, равен ли текущий атрибут Tuple<T1,T2> указанному объекту при использовании заданного метода сравнения.Returns a value that indicates whether the current Tuple<T1,T2> object is equal to a specified object based on a specified comparison method. |
IStructuralEquatable.GetHashCode(IEqualityComparer) |
Вычисляет хэш-код для текущего объекта Tuple<T1,T2>, используя заданный метод вычисления.Calculates the hash code for the current Tuple<T1,T2> object by using a specified computation method. |
ITuple.Item[Int32] |
Получает значение указанного элемента |
ITuple.Length |
Возвращает количество элементов в |
Методы расширения
Deconstruct<T1,T2>(Tuple<T1,T2>, T1, T2) |
Разбивает кортеж с 2 элементами на отдельные переменные.Deconstructs a tuple with 2 elements into separate variables. |
ToValueTuple<T1,T2>(Tuple<T1,T2>) |
Преобразует экземпляр класса |