Tuple<T1,T2,T3,T4> Klasse
Definition
Stellt ein 4-Tupel (Quadrupel) dar.Represents a 4-tuple, or quadruple.
generic <typename T1, typename T2, typename T3, typename T4>
public ref class Tuple : IComparable, System::Collections::IStructuralComparable, System::Collections::IStructuralEquatable
generic <typename T1, typename T2, typename T3, typename T4>
public ref class Tuple : IComparable, System::Collections::IStructuralComparable, System::Collections::IStructuralEquatable, System::Runtime::CompilerServices::ITuple
public class Tuple<T1,T2,T3,T4> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable
public class Tuple<T1,T2,T3,T4> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.Runtime.CompilerServices.ITuple
[System.Serializable]
public class Tuple<T1,T2,T3,T4> : IComparable, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable
type Tuple<'T1, 'T2, 'T3, 'T4> = class
interface IStructuralComparable
interface IStructuralEquatable
interface IComparable
type Tuple<'T1, 'T2, 'T3, 'T4> = class
interface IStructuralComparable
interface IStructuralEquatable
interface IComparable
interface ITuple
[<System.Serializable>]
type Tuple<'T1, 'T2, 'T3, 'T4> = class
interface IStructuralEquatable
interface IStructuralComparable
interface IComparable
[<System.Serializable>]
type Tuple<'T1, 'T2, 'T3, 'T4> = class
interface IStructuralEquatable
interface IStructuralComparable
interface IComparable
interface ITuple
Public Class Tuple(Of T1, T2, T3, T4)
Implements IComparable, IStructuralComparable, IStructuralEquatable
Public Class Tuple(Of T1, T2, T3, T4)
Implements IComparable, IStructuralComparable, IStructuralEquatable, ITuple
Typparameter
- T1
Der Typ der ersten Komponente des Tupels.The type of the tuple's first component.
- T2
Der Typ der zweiten Komponente des Tupels.The type of the tuple's second component.
- T3
Der Typ der dritten Komponente des Tupels.The type of the tuple's third component.
- T4
Der Typ der vierten Komponente des Tupels.The type of the tuple's fourth component.
- Vererbung
-
Tuple<T1,T2,T3,T4>
- Attribute
- Implementiert
Hinweise
Ein Tupel ist eine Datenstruktur, die über eine bestimmte Anzahl und Sequenz von Werten verfügt.A tuple is a data structure that has a specific number and sequence of values. Die- Tuple<T1,T2,T3,T4> Klasse stellt ein 4-Tupel oder ein Vierfaches dar, bei dem es sich um ein Tupel mit vier Komponenten handelt.The Tuple<T1,T2,T3,T4> class represents a 4-tuple, or quadruple, which is a tuple that has four components.
Sie können ein-Objekt instanziieren, Tuple<T1,T2,T3,T4> indem Sie entweder den- Tuple<T1,T2,T3,T4> Konstruktor oder die statische- Tuple.Create<T1,T2,T3,T4>(T1, T2, T3, T4) Methode aufrufen.You can instantiate a Tuple<T1,T2,T3,T4> object by calling either the Tuple<T1,T2,T3,T4> constructor or the static Tuple.Create<T1,T2,T3,T4>(T1, T2, T3, T4) method. Sie können den Wert der Komponenten des Tupels abrufen, indem Sie die schreibgeschützten-,-, Item1 Item2 Item3 -und- Item4 Instanzeigenschaften verwenden.You can retrieve the value of the tuple's components by using the read-only Item1, Item2, Item3, and Item4 instance properties.
Tupel werden üblicherweise auf vier verschiedene Arten verwendet:Tuples are commonly used in four different ways:
, Um einen einzelnen Satz von Daten darzustellen.To represent a single set of data. Ein Tupel kann z. b. einen Datenbankdaten Satz darstellen, und seine Komponenten können einzelne Felder des Datensatzes darstellen.For example, a tuple can represent a database record, and its components can represent individual fields of the record.
, Um einen einfachen Zugriff auf ein DataSet und die Bearbeitung von Daten zu ermöglichen.To provide easy access to, and manipulation of, a data set. Im folgenden Beispiel wird ein Array von-Objekten definiert, die Tuple<T1,T2,T3,T4> die Namen der Baseball-Pitcher, die Anzahl der gepitppten und die Anzahl der verdienten Ausführungen (Ausführungen, die ohne Fielding-Fehler bewertet wurden) und Treffer enthalten, die Sie ergeben haben.The following example defines an array of Tuple<T1,T2,T3,T4> objects that contain the names of baseball pitchers, the number of innings they pitched, and the number of earned runs (runs that scored without fielding errors), and hits that they gave up. Das Array wird an die-
ComputeStatistics
Methode übergeben, die den verdienten Ausführungs Durchschnitt (durchschnittliche Anzahl von Ausführungen in einem neun-Inning-Spiel) und die durchschnittliche Anzahl der pro Inning gegebenen Treffer berechnet.The array is passed to theComputeStatistics
method, which calculates each pitcher's earned run average (the average number of runs given up in a nine-inning game), and the average number of hits given up per inning. Die-Methode verwendet diese beiden Durchschnittswerte auch, um einen hypothetischen Wirksamkeits Durchschnitt zu berechnen.The method also uses these two averages to compute a hypothetical effectiveness average.using System; using System.Collections.Generic; public class Example { public static void Main() { Tuple<string, decimal, int, int>[] pitchers = { Tuple.Create("McHale, Joe", 240.1m, 221, 96), Tuple.Create("Paul, Dave", 233.1m, 231, 84), Tuple.Create("Williams, Mike", 193.2m, 183, 86), Tuple.Create("Blair, Jack", 168.1m, 146, 65), Tuple.Create("Henry, Walt", 140.1m, 96, 30), Tuple.Create("Lee, Adam", 137.2m, 109, 45), Tuple.Create("Rohr, Don", 101.0m, 110, 42) }; Tuple<string, double, double, double>[] results= ComputeStatistics(pitchers); // Display the results. Console.WriteLine("{0,-20} {1,9} {2,11} {3,15}\n", "Pitcher", "ERA", "Hits/Inn.", "Effectiveness"); foreach (var result in results) Console.WriteLine("{0,-20} {1,9:F2} {2,11:F2} {3,15:F2}", result.Item1, result.Item2, result.Item3, result.Item4); } private static Tuple<string, double, double, double>[] ComputeStatistics(Tuple<string, decimal, int, int>[] pitchers) { var list = new List<Tuple<string, double, double, double>>(); Tuple<string, double, double, double> result; foreach (var pitcher in pitchers) { // Decimal portion of innings pitched represents 1/3 of an inning double innings = (double) Math.Truncate(pitcher.Item2); innings = innings + (((double)pitcher.Item2 - innings) * .33); double ERA = pitcher.Item4/innings * 9; double hitsPerInning = pitcher.Item3/innings; double EI = (ERA * 2 + hitsPerInning * 9)/3; result = new Tuple<string, double, double, double> (pitcher.Item1, ERA, hitsPerInning, EI); list.Add(result); } return list.ToArray(); } } // The example displays the following output; // Pitcher ERA Hits/Inn. Effectiveness // // McHale, Joe 3.60 0.92 5.16 // Paul, Dave 3.24 0.99 5.14 // Williams, Mike 4.01 0.95 5.52 // Blair, Jack 3.48 0.87 4.93 // Henry, Walt 1.93 0.69 3.34 // Lee, Adam 2.95 0.80 4.36 // Rohr, Don 3.74 1.09 5.76
Imports System.Collections.Generic Module Example Public Sub Main() Dim pitchers() = { Tuple.Create("McHale, Joe", 240.1d, 221, 96), Tuple.Create("Paul, Dave", 233.1d, 231, 84), Tuple.Create("Williams, Mike", 193.2d, 183, 86), Tuple.Create("Blair, Jack", 168.1d, 146, 65), Tuple.Create("Henry, Walt", 140.1d, 96, 30), Tuple.Create("Lee, Adam", 137.2d, 109, 45), Tuple.Create("Rohr, Don", 101.0d, 110, 42) } Dim results() = ComputeStatistics(pitchers) ' Display the results. Console.WriteLine("{0,-20} {1,9} {2,11} {3,15}", "Pitcher", "ERA", "Hits/Inn.", "Effectiveness") Console.WriteLine() For Each result In results Console.WriteLine("{0,-20} {1,9:F2} {2,11:F2} {3,15:F2}", result.Item1, result.Item2, result.Item3, result.Item4) Next End Sub Private Function ComputeStatistics(pitchers() As Tuple(Of String, Decimal, Integer, Integer)) _ As Tuple(Of String, Double, Double, Double)() Dim list As New List(Of Tuple(Of String, Double, Double, Double)) Dim result As Tuple(Of String, Double, Double, Double) For Each pitcher As Tuple(Of String, Decimal, Integer, Integer) In pitchers ' Decimal portion of innings pitched represents 1/3 of an inning Dim innings As Double = CDbl(Math.Truncate(pitcher.Item2)) innings = innings + ((pitcher.Item2 - innings) * .33) Dim ERA As Double = pitcher.Item4/innings * 9 Dim hitsPerInning As Double = pitcher.Item3/innings Dim EI As Double = (ERA * 2 + hitsPerInning * 9)/3 result = New Tuple(Of String, Double, Double, Double) _ (pitcher.Item1, ERA, hitsPerInning, EI) list.Add(result) Next Return list.ToArray() End Function End Module ' The example displays the following output: ' Pitcher ERA Hits/Inn. Effectiveness ' ' McHale, Joe 3.60 0.92 5.16 ' Paul, Dave 3.24 0.99 5.14 ' Williams, Mike 4.01 0.95 5.52 ' Blair, Jack 3.48 0.87 4.93 ' Henry, Walt 1.93 0.69 3.34 ' Lee, Adam 2.95 0.80 4.36 ' Rohr, Don 3.74 1.09 5.76
, Wenn mehrere Werte aus einer Methode ohne Verwendung von
out
Parametern (in c#) oderByRef
Parametern (in Visual Basic) zurückgegeben werden sollen.To return multiple values from a method without the use ofout
parameters (in C#) orByRef
parameters (in Visual Basic). Beispielsweise gibt das vorherige Beispiel seine berechnete Statistik zusammen mit dem Namen des Pitcher in einem Array von-Objekten zurück Tuple<T1,T2,T3,T4> .For example, the previous example returns its computed statistics, along with the name of the pitcher, in an array of Tuple<T1,T2,T3,T4> objects., Wenn mehrere Werte über einen einzelnen Parameter an eine Methode übergeben werden sollen.To pass multiple values to a method through a single parameter. Beispielsweise verfügt die- Thread.Start(Object) Methode über einen einzelnen Parameter, mit dem Sie einen Wert für die Methode angeben können, die der Thread beim Start ausführt.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. Wenn Sie ein Tuple<T1,T2,T3,T4> -Objekt als Methoden Argument bereitstellen, können Sie die Start Routine des Threads mit vier Datenelementen bereitstellen.If you supply a Tuple<T1,T2,T3,T4> object as the method argument, you can supply the thread's startup routine with four items of data.
Konstruktoren
Tuple<T1,T2,T3,T4>(T1, T2, T3, T4) |
Initialisiert eine neue Instanz der Tuple<T1,T2,T3,T4>-Klasse.Initializes a new instance of the Tuple<T1,T2,T3,T4> class. |
Eigenschaften
Item1 |
Ruft den Wert der ersten Komponente des aktuellen Tuple<T1,T2,T3,T4>-Objekts ab.Gets the value of the current Tuple<T1,T2,T3,T4> object's first component. |
Item2 |
Ruft den Wert der zweiten Komponente des aktuellen Tuple<T1,T2,T3,T4>-Objekts ab.Gets the value of the current Tuple<T1,T2,T3,T4> object's second component. |
Item3 |
Ruft den Wert der dritten Komponente des aktuellen Tuple<T1,T2,T3,T4>-Objekts ab.Gets the value of the current Tuple<T1,T2,T3,T4> object's third component. |
Item4 |
Ruft den Wert der vierten Komponente des aktuellen Tuple<T1,T2,T3,T4>-Objekts ab.Gets the value of the current Tuple<T1,T2,T3,T4> object's fourth component. |
Methoden
Equals(Object) |
Gibt einen Wert zurück, der angibt, ob das aktuelle Tuple<T1,T2,T3,T4>-Objekt gleich einem angegebenen Objekt ist.Returns a value that indicates whether the current Tuple<T1,T2,T3,T4> object is equal to a specified object. |
GetHashCode() |
Gibt den Hashcode für das aktuelle Tuple<T1,T2,T3,T4>-Objekt zurück.Returns the hash code for the current Tuple<T1,T2,T3,T4> object. |
GetType() |
Ruft den Type der aktuellen Instanz ab.Gets the Type of the current instance. (Geerbt von Object) |
MemberwiseClone() |
Erstellt eine flache Kopie des aktuellen Object.Creates a shallow copy of the current Object. (Geerbt von Object) |
ToString() |
Gibt eine Zeichenfolge zurück, die den Wert dieser Tuple<T1,T2,T3,T4>-Instanz darstellt.Returns a string that represents the value of this Tuple<T1,T2,T3,T4> instance. |
Explizite Schnittstellenimplementierungen
IComparable.CompareTo(Object) |
Vergleicht das aktuelle Tuple<T1,T2,T3,T4>-Objekt mit einem angegebenen Objekt und gibt eine Ganzzahl zurück, die darauf hinweist, ob sich das aktuelle Objekt in der Sortierreihenfolge vor oder hinter dem angegebenen Objekt oder an der gleichen Position befindet.Compares the current Tuple<T1,T2,T3,T4> 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) |
Vergleicht das aktuelle Tuple<T1,T2,T3,T4>-Objekt anhand eines angegebenen Vergleichs mit einem angegebenen Objekt und gibt eine ganze Zahl zurück, die angibt, ob sich das aktuelle Element in der Sortierreihenfolge vor dem angegebenen Element, dahinter oder an derselben Position befindet.Compares the current Tuple<T1,T2,T3,T4> 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) |
Gibt einen Wert zurück, der auf Grundlage einer angegebenen Vergleichsmethode angibt, ob das aktuelle Tuple<T1,T2,T3,T4>-Objekt gleich einem angegebenen Objekt ist.Returns a value that indicates whether the current Tuple<T1,T2,T3,T4> object is equal to a specified object based on a specified comparison method. |
IStructuralEquatable.GetHashCode(IEqualityComparer) |
Berechnet mit einer angegebenen Berechnungsmethode den Hash für das aktuelle Tuple<T1,T2,T3,T4>-Objekt.Calculates the hash code for the current Tuple<T1,T2,T3,T4> object by using a specified computation method. |
ITuple.Item[Int32] |
Ruft den Wert des angegebenen Elements |
ITuple.Length |
Ruft die Anzahl der Elemente im |
Erweiterungsmethoden
Deconstruct<T1,T2,T3,T4>(Tuple<T1,T2,T3,T4>, T1, T2, T3, T4) |
Dekonstruiert ein Tupel mit vier Elementen in separate Variablen.Deconstructs a tuple with 4 elements into separate variables. |
ToValueTuple<T1,T2,T3,T4>(Tuple<T1,T2,T3,T4>) |
Konvertiert eine Instanz der |