加载中...
The Wayback Machine - https://sup1a9wrlpyh5li9ro.vcoronado.top/web/20090420191359/http://developer.android.com:80/reference/java/lang/Comparable.html
public interface

Comparable

java.lang.Comparable<T>
Known Indirect Subclasses

Class Overview

This interface should be implemented by all classes which wish to define a natural ordering of their instances. The ordering rule must be transitive and invertable (i.e. the sign of the result of x.compareTo(y) must equal the negation of the sign of the result of y.compareTo(x) for all x and y).

In addition, it is desireable (but not required) that when the result of x.compareTo(y) is zero (and only then) the result of x.equals(y) should be true.

Summary

Public Methods
abstract int compareTo(T another)
Returns an integer indicating the relative positions of the receiver and the argument in the natural order of elements of the receiver's class.

Public Methods

public abstract int compareTo (T another)

Returns an integer indicating the relative positions of the receiver and the argument in the natural order of elements of the receiver's class.

Parameters
another Object an object to compare the receiver to
Returns
  • int which should be <0 if the receiver should sort before the argument, 0 if the receiver should sort in the same position as the argument, and >0 if the receiver should sort after the argument.
Throws
ClassCastException if the argument can not be converted into something comparable with the receiver.