Tuple<T1,T2>.IComparable.CompareTo(Object) Metoda
Definicja
Porównuje bieżący Tuple<T1,T2> obiekt z określonym obiektem i zwraca liczbę całkowitą, która wskazuje, czy bieżący obiekt jest przed, po lub w tym samym położeniu, co określony obiekt w kolejności sortowania.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.
virtual int System.IComparable.CompareTo(System::Object ^ obj) = IComparable::CompareTo;
int IComparable.CompareTo (object obj);
abstract member System.IComparable.CompareTo : obj -> int
override this.System.IComparable.CompareTo : obj -> int
Function CompareTo (obj As Object) As Integer Implements IComparable.CompareTo
Parametry
- obj
- Object
Obiekt, który ma zostać porównany z bieżącym wystąpieniem.An object to compare with the current instance.
Zwraca
Liczba całkowita ze znakiem, która wskazuje względną pozycję tego wystąpienia i obj
w kolejności sortowania, jak pokazano w poniższej tabeli.A signed integer that indicates the relative position of this instance and obj
in the sort order, as shown in the following table.
WartośćValue | OpisDescription |
---|---|
Ujemna liczba całkowitaA negative integer | To wystąpienie poprzedza obj .This instance precedes obj .
|
ZeroZero | To wystąpienie i obj ma takie same położenie w kolejności sortowania.This instance and obj have the same position in the sort order.
|
Dodatnia liczba całkowitaA positive integer | To wystąpienie jest następujące obj .This instance follows obj .
|
Implementuje
Wyjątki
obj
nie jest Tuple<T1,T2> obiektem.obj
is not a Tuple<T1,T2> object.
Przykłady
Poniższy przykład tworzy tablicę Tuple<T1,T2> obiektów, które składają się z nazwy studenta i oceny testu.The following example creates an array of Tuple<T1,T2> objects that consist of a student's name and test score. Wyświetla składnik każdej krotki w tablicy w kolejności niesortowanej, Sortuje tablicę, a następnie wywołuje w ToString celu wyświetlenia wartości poszczególnych krotek w sortowanej kolejności.It displays the component of each tuple in the array in unsorted order, sorts the array, and then calls ToString to display the value of each tuple in sorted order. Dane wyjściowe pokazują, że tablica została posortowana według pierwszego składnika.The output shows that the array has been sorted by its first component. Należy zauważyć, że przykład nie wywołuje bezpośrednio IComparable.CompareTo(Object) metody.Note that the example does not directly call the IComparable.CompareTo(Object) method. Ta metoda jest wywoływana niejawnie przez Sort(Array) metodę dla każdego elementu w tablicy.This method is called implicitly by the Sort(Array) method for each element in the array.
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) };
Console.WriteLine("The values in unsorted order:");
foreach (Tuple<string, Nullable<int>> score in scores)
Console.WriteLine(score.ToString());
Console.WriteLine();
Array.Sort(scores);
Console.WriteLine("The values in sorted order:");
foreach (Tuple<string, Nullable<int>> score in scores)
Console.WriteLine(score.ToString());
}
}
// The example displays the following output;
// The values in unsorted order:
// (Jack, 78)
// (Abbey, 92)
// (Dave, 88)
// (Sam, 91)
// (Ed, )
// (Penelope, 82)
// (Linda, 99)
// (Judith, 84)
//
// The values in sorted order:
// (Abbey, 92)
// (Dave, 88)
// (Ed, )
// (Jack, 78)
// (Judith, 84)
// (Linda, 99)
// (Penelope, 82)
// (Sam, 91)
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) }
Console.WriteLine("The values in unsorted order:")
For Each score In scores
Console.WriteLine(score.ToString())
Next
Console.WriteLine()
Array.Sort(scores)
Console.WriteLine("The values in sorted order:")
For Each score In scores
Console.WriteLine(score.ToString())
Next
End Sub
End Module
' The example displays the following output;
' The values in unsorted order:
' (Jack, 78)
' (Abbey, 92)
' (Dave, 88)
' (Sam, 91)
' (Ed, )
' (Penelope, 82)
' (Linda, 99)
' (Judith, 84)
'
' The values in sorted order:
' (Abbey, 92)
' (Dave, 88)
' (Ed, )
' (Jack, 78)
' (Judith, 84)
' (Linda, 99)
' (Penelope, 82)
' (Sam, 91)
Uwagi
Ten element jest jawną implementacją członków.This member is an explicit interface member implementation. Może być używana tylko wtedy, gdy Tuple<T1,T2> wystąpienie jest rzutowane do IComparable interfejsu.It can be used only when the Tuple<T1,T2> instance is cast to an IComparable interface.
Ta metoda zapewnia IComparable.CompareTo implementację Tuple<T1,T2> klasy.This method provides the IComparable.CompareTo implementation for the Tuple<T1,T2> class. Mimo że metoda może być wywoływana bezpośrednio, jest najczęściej wywoływana przez domyślne przeciążenia metod sortowania kolekcji, takich jak Array.Sort(Array) i SortedList.Add , w celu uporządkowania elementów członkowskich kolekcji.Although the method can be called directly, it is most commonly called by the default overloads of collection sorting methods, such as Array.Sort(Array) and SortedList.Add, to order the members of a collection.
Przestroga
Tuple<T1,T2>.IComparable.CompareToMetoda jest przeznaczona do użycia podczas sortowania operacji.The Tuple<T1,T2>.IComparable.CompareTo method is intended for use in sorting operations. Nie należy jej używać, gdy głównym celem porównania jest ustalenie, czy dwa obiekty są sobie równe.It should not be used when the primary purpose of a comparison is to determine whether two objects are equal. Aby określić, czy dwa obiekty są równe, wywołaj Equals metodę.To determine whether two objects are equal, call the Equals method.
Tuple<T1,T2>.IComparable.CompareToMetoda używa domyślnego programu porównującego obiekty do porównania każdego składnika.The Tuple<T1,T2>.IComparable.CompareTo method uses the default object comparer to compare each component.