IComparable.CompareTo(Object) Metodo
Definizione
Confronta l'istanza corrente con un altro oggetto dello stesso tipo e restituisce un intero che indica se l'istanza corrente precede, segue o si trova nella stessa posizione dell'altro oggetto all'interno dell'ordinamento.Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
public:
int CompareTo(System::Object ^ obj);
public int CompareTo (object obj);
public int CompareTo (object? obj);
abstract member CompareTo : obj -> int
Public Function CompareTo (obj As Object) As Integer
Parametri
- obj
- Object
Oggetto da confrontare con l'istanza.An object to compare with this instance.
Restituisce
Valore che indica l'ordine relativo degli oggetti confrontati.A value that indicates the relative order of the objects being compared. Il valore restituito ha i seguenti significati:The return value has these meanings:
ValoreValue | SignificatoMeaning |
---|---|
Minore di zeroLess than zero | Questa istanza precede obj nell'ordinamento.This instance precedes obj in the sort order.
|
ZeroZero | Questa istanza si presenta nella stessa posizione di obj all'interno dell'ordinamento.This instance occurs in the same position in the sort order as obj .
|
Maggiore di zeroGreater than zero | Questa istanza segue obj nei criteri di ordinamento.This instance follows obj in the sort order.
|
Eccezioni
obj
non ha lo stesso tipo di questa istanza.obj
is not the same type as this instance.
Esempio
Nell'esempio seguente viene illustrato l'utilizzo di CompareTo per confrontare un Temperature
oggetto che implementa IComparable con un altro oggetto.The following example illustrates the use of CompareTo to compare a Temperature
object implementing IComparable with another object. L' Temperature
oggetto implementa CompareTo semplicemente il wrapping di una chiamata al Int32.CompareTo metodo.The Temperature
object implements CompareTo by simply wrapping a call to the Int32.CompareTo method.
using namespace System;
using namespace System::Collections;
public ref class Temperature: public IComparable {
/// <summary>
/// IComparable.CompareTo implementation.
/// </summary>
protected:
// The value holder
Double m_value;
public:
virtual Int32 CompareTo( Object^ obj ) {
if (obj == nullptr) return 1;
if ( obj->GetType() == Temperature::typeid ) {
Temperature^ temp = dynamic_cast<Temperature^>(obj);
return m_value.CompareTo( temp->m_value );
}
throw gcnew ArgumentException( "object is not a Temperature" );
}
property Double Value {
Double get() {
return m_value;
}
void set( Double value ) {
m_value = value;
}
}
property Double Celsius {
Double get() {
return (m_value - 32) / 1.8;
}
void set( Double value ) {
m_value = (value * 1.8) + 32;
}
}
};
int main()
{
ArrayList^ temperatures = gcnew ArrayList;
// Initialize random number generator.
Random^ rnd = gcnew Random;
// Generate 10 temperatures between 0 and 100 randomly.
for (int ctr = 1; ctr <= 10; ctr++)
{
int degrees = rnd->Next(0, 100);
Temperature^ temp = gcnew Temperature;
temp->Value = degrees;
temperatures->Add(temp);
}
// Sort ArrayList.
temperatures->Sort();
for each (Temperature^ temp in temperatures)
Console::WriteLine(temp->Value);
return 0;
}
// The example displays the following output to the console (individual
// values may vary because they are randomly generated):
// 2
// 7
// 16
// 17
// 31
// 37
// 58
// 66
// 72
// 95
using System;
using System.Collections;
public class Temperature : IComparable
{
// The temperature value
protected double temperatureF;
public int CompareTo(object obj) {
if (obj == null) return 1;
Temperature otherTemperature = obj as Temperature;
if (otherTemperature != null)
return this.temperatureF.CompareTo(otherTemperature.temperatureF);
else
throw new ArgumentException("Object is not a Temperature");
}
public double Fahrenheit
{
get
{
return this.temperatureF;
}
set {
this.temperatureF = value;
}
}
public double Celsius
{
get
{
return (this.temperatureF - 32) * (5.0/9);
}
set
{
this.temperatureF = (value * 9.0/5) + 32;
}
}
}
public class CompareTemperatures
{
public static void Main()
{
ArrayList temperatures = new ArrayList();
// Initialize random number generator.
Random rnd = new Random();
// Generate 10 temperatures between 0 and 100 randomly.
for (int ctr = 1; ctr <= 10; ctr++)
{
int degrees = rnd.Next(0, 100);
Temperature temp = new Temperature();
temp.Fahrenheit = degrees;
temperatures.Add(temp);
}
// Sort ArrayList.
temperatures.Sort();
foreach (Temperature temp in temperatures)
Console.WriteLine(temp.Fahrenheit);
}
}
// The example displays the following output to the console (individual
// values may vary because they are randomly generated):
// 2
// 7
// 16
// 17
// 31
// 37
// 58
// 66
// 72
// 95
Imports System.Collections
Public Class Temperature
Implements IComparable
' The temperature value
Protected temperatureF As Double
Public Overloads Function CompareTo(ByVal obj As Object) As Integer _
Implements IComparable.CompareTo
If obj Is Nothing Then Return 1
Dim otherTemperature As Temperature = TryCast(obj, Temperature)
If otherTemperature IsNot Nothing Then
Return Me.temperatureF.CompareTo(otherTemperature.temperatureF)
Else
Throw New ArgumentException("Object is not a Temperature")
End If
End Function
Public Property Fahrenheit() As Double
Get
Return temperatureF
End Get
Set(ByVal Value As Double)
Me.temperatureF = Value
End Set
End Property
Public Property Celsius() As Double
Get
Return (temperatureF - 32) * (5/9)
End Get
Set(ByVal Value As Double)
Me.temperatureF = (Value * 9/5) + 32
End Set
End Property
End Class
Public Module CompareTemperatures
Public Sub Main()
Dim temperatures As New ArrayList
' Initialize random number generator.
Dim rnd As New Random()
' Generate 10 temperatures between 0 and 100 randomly.
For ctr As Integer = 1 To 10
Dim degrees As Integer = rnd.Next(0, 100)
Dim temp As New Temperature
temp.Fahrenheit = degrees
temperatures.Add(temp)
Next
' Sort ArrayList.
temperatures.Sort()
For Each temp As Temperature In temperatures
Console.WriteLine(temp.Fahrenheit)
Next
End Sub
End Module
' The example displays the following output to the console (individual
' values may vary because they are randomly generated):
' 2
' 7
' 16
' 17
' 31
' 37
' 58
' 66
' 72
' 95
Commenti
Il CompareTo metodo viene implementato da tipi i cui valori possono essere ordinati o ordinati.The CompareTo method is implemented by types whose values can be ordered or sorted. Viene chiamato automaticamente da metodi di oggetti raccolta non generici, ad esempio Array.Sort , per ordinare ogni membro della matrice.It is called automatically by methods of non-generic collection objects, such as Array.Sort, to order each member of the array. Se una classe o una struttura personalizzata non implementa IComparable , i relativi membri non possono essere ordinati e l'operazione di ordinamento può generare un'operazione InvalidOperationException .If a custom class or structure does not implement IComparable, its members cannot be ordered and the sort operation can throw an InvalidOperationException.
Questo metodo è solo una definizione e deve essere implementato da una classe o un tipo di valore specifico per avere effetto.This method is only a definition and must be implemented by a specific class or value type to have effect. Il significato dei confronti specificati nella sezione del valore restituito ("precede", "si trova nella stessa posizione di" e "segue") dipende dall'implementazione specifica.The meaning of the comparisons specified in the Return Value section ("precedes", "occurs in the same position as", and "follows") depends on the particular implementation.
Per definizione, qualsiasi oggetto confronta maggiore (o segue) null
e due riferimenti null si confrontano tra loro.By definition, any object compares greater than (or follows) null
, and two null references compare equal to each other.
Il parametro, obj
, deve essere dello stesso tipo della classe o del tipo di valore che implementa questa interfaccia; in caso contrario, ArgumentException viene generata un'eccezione.The parameter, obj
, must be the same type as the class or value type that implements this interface; otherwise, an ArgumentException is thrown.
Note per gli implementatori
Per gli oggetti A, B e C, è necessario che siano soddisfatte le condizioni seguenti:For objects A, B and C, the following must be true:
A. CompareTo (a)
deve restituire zero.A.CompareTo(A)
must return zero.
Se A. CompareTo (B)
restituisce zero, B. CompareTo (A)
deve restituire zero.If A.CompareTo(B)
returns zero, then B.CompareTo(A)
must return zero.
Se a. CompareTo (B)
restituisce zero e B. CompareTo (c)
restituisce zero, un. CompareTo (c)
deve restituire zero.If A.CompareTo(B)
returns zero and B.CompareTo(C)
returns zero, then A.CompareTo(C)
must return zero.
Se a. CompareTo (B)
viene restituito un valore diverso da zero, b. CompareTo (A)
deve restituire un valore del segno opposto.If A.CompareTo(B)
returns a value other than zero, then B.CompareTo(A)
must return a value of the opposite sign.
Se a. CompareTo (B)
viene restituito un valore diverso x
da zero e B. CompareTo (c)
restituisce un valore y
dello stesso segno di x
, un. CompareTo (c)
deve restituire un valore con lo stesso segno di x
e y
.If A.CompareTo(B)
returns a value x
not equal to zero, and B.CompareTo(C)
returns a value y
of the same sign as x
, then A.CompareTo(C)
must return a value of the same sign as x
and y
.
Note per i chiamanti
Utilizzare il CompareTo(Object) metodo per determinare l'ordinamento delle istanze di una classe.Use the CompareTo(Object) method to determine the ordering of instances of a class.