Tuple<T1,T2,T3,T4,T5> Classe
Definição
Representa uma tupla 5 ou quíntupla.Represents a 5-tuple, or quintuple.
generic <typename T1, typename T2, typename T3, typename T4, typename T5>
public ref class Tuple : IComparable, System::Collections::IStructuralComparable, System::Collections::IStructuralEquatable
generic <typename T1, typename T2, typename T3, typename T4, typename T5>
public ref class Tuple : IComparable, System::Collections::IStructuralComparable, System::Collections::IStructuralEquatable, System::Runtime::CompilerServices::ITuple
public class Tuple<T1,T2,T3,T4,T5> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable
public class Tuple<T1,T2,T3,T4,T5> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.Runtime.CompilerServices.ITuple
[System.Serializable]
public class Tuple<T1,T2,T3,T4,T5> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable
type Tuple<'T1, 'T2, 'T3, 'T4, 'T5> = class
interface IStructuralComparable
interface IStructuralEquatable
interface IComparable
type Tuple<'T1, 'T2, 'T3, 'T4, 'T5> = class
interface IStructuralComparable
interface IStructuralEquatable
interface IComparable
interface ITuple
[<System.Serializable>]
type Tuple<'T1, 'T2, 'T3, 'T4, 'T5> = class
interface IStructuralEquatable
interface IStructuralComparable
interface IComparable
[<System.Serializable>]
type Tuple<'T1, 'T2, 'T3, 'T4, 'T5> = class
interface IStructuralEquatable
interface IStructuralComparable
interface IComparable
interface ITuple
Public Class Tuple(Of T1, T2, T3, T4, T5)
Implements IComparable, IStructuralComparable, IStructuralEquatable
Public Class Tuple(Of T1, T2, T3, T4, T5)
Implements IComparable, IStructuralComparable, IStructuralEquatable, ITuple
Parâmetros de tipo
- T1
O tipo do primeiro componente da tupla.The type of the tuple's first component.
- T2
O tipo do segundo componente da tupla.The type of the tuple's second component.
- T3
O tipo do terceiro componente da tupla.The type of the tuple's third component.
- T4
O tipo do quarto componente da tupla.The type of the tuple's fourth component.
- T5
O tipo do quinto componente da tupla.The type of the tuple's fifth component.
- Herança
-
Tuple<T1,T2,T3,T4,T5>
- Atributos
- Implementações
Comentários
Tupla é uma estrutura de dados que possui um número específico e uma sequência de valores.A tuple is a data structure that has a specific number and sequence of values. A Tuple<T1,T2,T3,T4,T5> classe representa um 5 tupla, ou quintuple, que é uma tupla que tem cinco componentes.The Tuple<T1,T2,T3,T4,T5> class represents a 5-tuple, or quintuple, which is a tuple that has five components.
Você pode criar uma instância de um Tuple<T1,T2,T3,T4,T5> objeto chamando o Tuple<T1,T2,T3,T4,T5> Construtor ou o Tuple.Create<T1,T2,T3,T4,T5>(T1, T2, T3, T4, T5) método estático.You can instantiate a Tuple<T1,T2,T3,T4,T5> object by calling either the Tuple<T1,T2,T3,T4,T5> constructor or the static Tuple.Create<T1,T2,T3,T4,T5>(T1, T2, T3, T4, T5) method. Você pode recuperar o valor dos componentes da tupla usando as propriedades de instância somente leitura Item1 ,,, Item2 Item3 Item4 e Item5 .You can retrieve the value of the tuple's components by using the read-only Item1, Item2, Item3, Item4, and Item5 instance properties.
As tuplas costumam ser usadas de quatro maneiras diferentes:Tuples are commonly used in four different ways:
Para representar um único conjunto de dados.To represent a single set of data. Por exemplo, uma tupla pode representar um registro de banco de dados, e seus componentes podem representar campos individuais do registro.For example, a tuple can represent a database record, and its components can represent individual fields of the record.
Para fornecer acesso fácil a, e a manipulação de um conjunto de dados.To provide easy access to, and manipulation of, a data set. O exemplo a seguir define uma matriz de Tuple<T1,T2,T3,T4,T5> objetos que contêm os nomes de em execução no futebol americano, o número de jogos em que eles foram reproduzidos e o número de contenções, total de jardas obtidas e touchdowns pontuados durante esses jogos.The following example defines an array of Tuple<T1,T2,T3,T4,T5> objects that contain the names of running backs in American football, the number of games in which they played, and the number of carries, total yards gained, and touchdowns scored during those games. A matriz é passada para o
ComputeStatisticsmétodo, que calcula cada número de reversão em execução de transcorridos por jogo, média de metros por jogo, média de jardas por transporte e número médio de touchdowns por tentativa.The array is passed to theComputeStatisticsmethod, which calculates each running back's number of carries per game, average yards per game, average yards per carry, and average number of touchdowns per attempt.using System; using System.Collections.Generic; public class Example { public static void Main() { // Organization of runningBacks 5-tuple: // Component 1: Player name // Component 2: Number of games played // Component 3: Number of attempts (carries) // Component 4: Number of yards gained // Component 5: Number of touchdowns Tuple<string, int, int, int, int>[] runningBacks = { Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) }; // Calculate statistics. // Organization of runningStats 5-tuple: // Component 1: Player name // Component 2: Number of attempts per game // Component 3: Number of yards per game // Component 4: Number of yards per attempt // Component 5: Number of touchdowns per attempt Tuple<string, double, double, double, double>[] runningStats = ComputeStatistics(runningBacks); // Display the result. Console.WriteLine("{0,-16} {1,5} {2,6} {3,7} {4,7} {5,7} {6,7} {7,5} {8,7}\n", "Name", "Games", "Att", "Att/Gm", "Yards", "Yds/Gm", "Yds/Att", "TD", "TD/Att"); for (int ctr = 0; ctr < runningBacks.Length; ctr++) Console.WriteLine("{0,-16} {1,5} {2,6:N0} {3,7:N1} {4,7:N0} {5,7:N1} {6,7:N2} {7,5} {8,7:N3}\n", runningBacks[ctr].Item1, runningBacks[ctr].Item2, runningBacks[ctr].Item3, runningStats[ctr].Item2, runningBacks[ctr].Item4, runningStats[ctr].Item3, runningStats[ctr].Item4, runningBacks[ctr].Item5, runningStats[ctr].Item5); } private static Tuple<string, double, double, double, double>[] ComputeStatistics( Tuple<string, int, int, int, int>[] players) { Tuple<string, double, double, double, double> result; var list = new List<Tuple<string, double, double, double, double>>(); foreach (var player in players) { // Create result object containing player name and statistics. result = Tuple.Create(player.Item1, player.Item3/((double)player.Item2), player.Item4/((double)player.Item2), player.Item4/((double)player.Item3), player.Item5/((double)player.Item3)); list.Add(result); } return list.ToArray(); } } // The example displays the following output: // Name Games Att Att/Gm Yards Yds/Gm Yds/Att TD TD/Att // // Payton, Walter 190 3,838 20.2 16,726 88.0 4.36 110 0.029 // // Sanders, Barry 153 3,062 20.0 15,269 99.8 4.99 99 0.032 // // Brown, Jim 118 2,359 20.0 12,312 104.3 5.22 106 0.045 // // Dickerson, Eric 144 2,996 20.8 13,259 92.1 4.43 90 0.030 // // Faulk, Marshall 176 2,836 16.1 12,279 69.8 4.33 100 0.035Imports System.Collections.Generic Module Example Public Sub Main() ' Organization of runningBacks 5-tuple: ' Component 1: Player name ' Component 2: Number of games played ' Component 3: Number of attempts (carries) ' Component 4: Number of yards gained ' Component 5: Number of touchdowns Dim runningBacks() = { Tuple.Create("Payton, Walter", 190, 3838, 16726, 110), Tuple.Create("Sanders, Barry", 153, 3062, 15269, 99), Tuple.Create("Brown, Jim", 118, 2359, 12312, 106), Tuple.Create("Dickerson, Eric", 144, 2996, 13259, 90), Tuple.Create("Faulk, Marshall", 176, 2836, 12279, 100) } ' Calculate statistics. ' Organization of runningStats 5-tuple: ' Component 1: Player name ' Component 2: Number of attempts per game ' Component 3: Number of yards per game ' Component 4: Number of yards per attempt ' Component 5: Number of touchdowns per attempt Dim runningStats() = ComputeStatistics(runningBacks) ' Display the result. Console.WriteLine("{0,-16} {1,5} {2,6} {3,7} {4,7} {5,7} {6,7} {7,5} {8,7}", "Name", "Games", "Att", "Att/Gm", "Yards", "Yds/Gm", "Yds/Att", "TD", "TD/Att") Console.WriteLine() For ctr As Integer = 0 To runningBacks.Length - 1 Console.WriteLine("{0,-16} {1,5} {2,6:N0} {3,7:N1} {4,7:N0} {5,7:N1} {6,7:N2} {7,5} {8,7:N3}", runningBacks(ctr).Item1, runningBacks(ctr).Item2, runningBacks(ctr).Item3, runningStats(ctr).Item2, runningBacks(ctr).Item4, runningStats(ctr).Item3, runningStats(ctr).Item4, runningBacks(ctr).Item5, runningStats(ctr).Item5) Console.WriteLine() Next End Sub Private Function ComputeStatistics(players() As Tuple(Of String, Integer, Integer, Integer, Integer)) _ As Tuple(Of String, Double, Double, Double, Double)() Dim result As Tuple(Of String, Double, Double, Double, Double) Dim list As New List(Of Tuple(Of String, Double, Double, Double, Double))() For Each player In players ' Create result object containing player name and statistics. result = Tuple.Create(player.Item1, player.Item3/player.Item2, player.Item4/player.Item2, player.Item4/player.Item3, player.Item5/player.Item3) list.Add(result) Next Return list.ToArray() End Function End Module ' The example displays the following output: ' Name Games Att Att/Gm Yards Yds/Gm Yds/Att TD TD/Att ' ' Payton, Walter 190 3,838 20.2 16,726 88.0 4.36 110 0.029 ' ' Sanders, Barry 153 3,062 20.0 15,269 99.8 4.99 99 0.032 ' ' Brown, Jim 118 2,359 20.0 12,312 104.3 5.22 106 0.045 ' ' Dickerson, Eric 144 2,996 20.8 13,259 92.1 4.43 90 0.030 ' ' Faulk, Marshall 176 2,836 16.1 12,279 69.8 4.33 100 0.035Para retornar vários valores de um método sem o uso de parâmetros
out(no C#) ou de parâmetrosByRef(no Visual Basic).To return multiple values from a method without the use ofoutparameters (in C#) orByRefparameters (in Visual Basic). Por exemplo, o exemplo anterior retorna suas estatísticas computadas, junto com o nome do Player, em uma matriz de Tuple<T1,T2,T3,T4,T5> objetos.For example, the previous example returns its computed statistics, along with the name of the player, in an array of Tuple<T1,T2,T3,T4,T5> objects.Para passar vários valores para um método por meio de um parâmetro único.To pass multiple values to a method through a single parameter. Por exemplo, o método Thread.Start(Object) tem um único parâmetro que permite fornecer um valor ao método que o thread executa na inicialização.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. Se você fornecer um Tuple<T1,T2,T3,T4,T5> objeto como o argumento do método, poderá fornecer a rotina de inicialização do thread com cinco itens de dados.If you supply a Tuple<T1,T2,T3,T4,T5> object as the method argument, you can supply the thread's startup routine with five items of data.
Construtores
| Tuple<T1,T2,T3,T4,T5>(T1, T2, T3, T4, T5) |
Inicializa uma nova instância da classe Tuple<T1,T2,T3,T4,T5>.Initializes a new instance of the Tuple<T1,T2,T3,T4,T5> class. |
Propriedades
| Item1 |
Obtém o valor do primeiro componente do objeto Tuple<T1,T2,T3,T4,T5> atual.Gets the value of the current Tuple<T1,T2,T3,T4,T5> object's first component. |
| Item2 |
Obtém o valor do segundo componente do objeto Tuple<T1,T2,T3,T4,T5> atual.Gets the value of the current Tuple<T1,T2,T3,T4,T5> object's second component. |
| Item3 |
Obtém o valor do terceiro componente do objeto Tuple<T1,T2,T3,T4,T5> atual.Gets the value of the current Tuple<T1,T2,T3,T4,T5> object's third component. |
| Item4 |
Obtém o valor do quarto componente do objeto Tuple<T1,T2,T3,T4,T5> atual.Gets the value of the current Tuple<T1,T2,T3,T4,T5> object's fourth component. |
| Item5 |
Obtém o valor do quinto componente do objeto Tuple<T1,T2,T3,T4,T5> atual.Gets the value of the current Tuple<T1,T2,T3,T4,T5> object's fifth component. |
Métodos
| Equals(Object) |
Retorna um valor que indica se o objeto Tuple<T1,T2,T3,T4,T5> atual é igual a um objeto especificado.Returns a value that indicates whether the current Tuple<T1,T2,T3,T4,T5> object is equal to a specified object. |
| GetHashCode() |
Retorna o código hash para o objeto Tuple<T1,T2,T3,T4,T5> atual.Returns the hash code for the current Tuple<T1,T2,T3,T4,T5> object. |
| GetType() |
Obtém o Type da instância atual.Gets the Type of the current instance. (Herdado de Object) |
| MemberwiseClone() |
Cria uma cópia superficial do Object atual.Creates a shallow copy of the current Object. (Herdado de Object) |
| ToString() |
Retorna uma cadeia de caracteres que representa o valor desta instância Tuple<T1,T2,T3,T4,T5>.Returns a string that represents the value of this Tuple<T1,T2,T3,T4,T5> instance. |
Implantações explícitas de interface
| IComparable.CompareTo(Object) |
Compara o objeto Tuple<T1,T2,T3,T4,T5> atual a um objeto especificado e retorna um inteiro que indica se o objeto atual está antes, depois ou na mesma posição que o objeto especificado na ordem de classificação.Compares the current Tuple<T1,T2,T3,T4,T5> 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) |
Compara o objeto Tuple<T1,T2,T3,T4,T5> atual com um objeto especificado usando um comparador especificado e retorna um inteiro que indica se o objeto atual está antes, depois ou na mesma posição do objeto especificado na ordem de classificação.Compares the current Tuple<T1,T2,T3,T4,T5> 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) |
Retorna um valor que indica se o objeto Tuple<T1,T2,T3,T4,T5> atual é igual ao objeto especificado com base em um determinado método de comparação.Returns a value that indicates whether the current Tuple<T1,T2,T3,T4,T5> object is equal to a specified object based on a specified comparison method. |
| IStructuralEquatable.GetHashCode(IEqualityComparer) |
Calcula o código hash para o objeto Tuple<T1,T2,T3,T4,T5> atual usando um método de computação especificado.Calculates the hash code for the current Tuple<T1,T2,T3,T4,T5> object by using a specified computation method. |
| ITuple.Item[Int32] |
Obtém o valor do elemento |
| ITuple.Length |
Obtém o número de elementos no |
Métodos de Extensão
| Deconstruct<T1,T2,T3,T4,T5>(Tuple<T1,T2,T3,T4,T5>, T1, T2, T3, T4, T5) |
Desconstrói uma tupla com cinco elementos em variáveis separadas.Deconstructs a tuple with 5 elements into separate variables. |
| ToValueTuple<T1,T2,T3,T4,T5>(Tuple<T1,T2,T3,T4,T5>) |
Converte uma instância da classe |